Goodbye Gruntfile - you have served me well
This commit is contained in:
parent
06070b4465
commit
95b0a26524
30
Gruntfile.js
30
Gruntfile.js
|
@ -1,30 +0,0 @@
|
||||||
|
|
||||||
module.exports = function(grunt) {
|
|
||||||
grunt.initConfig({
|
|
||||||
pkg: grunt.file.readJSON("package.json"),
|
|
||||||
|
|
||||||
watch: {
|
|
||||||
sass: {
|
|
||||||
files: ["scss/**/*.{scss,sass}"],
|
|
||||||
tasks: ["sass:dev"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
sass: {
|
|
||||||
dev: {
|
|
||||||
options: {
|
|
||||||
style: 'nested'
|
|
||||||
},
|
|
||||||
files: {
|
|
||||||
'_site/style.css': 'scss/style.scss',
|
|
||||||
'style.css': 'scss/style.scss'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
grunt.registerTask("default", ["watch"]);
|
|
||||||
|
|
||||||
grunt.loadNpmTasks('grunt-sass');
|
|
||||||
grunt.loadNpmTasks("grunt-contrib-watch");
|
|
||||||
};
|
|
Loading…
Reference in a new issue