Created
October 5, 2017 17:07
-
-
Save edgarshurtado/6ed2fae56b300386b81f2c992a2da8ab to your computer and use it in GitHub Desktop.
example Gruntfile.js for my blogpost explaining grunt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt){ | |
require("load-grunt-tasks")(grunt); | |
grunt.initConfig({ | |
"babel": { | |
options: { | |
sourceMap: true | |
}, | |
dist: { | |
files: { | |
'public/app.js': 'js/app.js', | |
'public/form-submission.js': 'js/form-submission.js' | |
}, | |
options: { | |
minified: true | |
} | |
} | |
}, | |
"sass": { | |
dist: { | |
files: { | |
'public/styles.css': 'scss/main.scss' | |
}, | |
options: { | |
style: 'compressed' | |
} | |
} | |
}, | |
"watch": { | |
options: { livereload: true }, | |
css: { | |
files: [ 'scss/*.scss'], | |
tasks: ['sass','postcss'] | |
}, | |
js: { | |
files: [ 'js/*.js'], | |
tasks: ['babel'] | |
}, | |
html: { | |
files: ["index.html"] | |
}, | |
images: { | |
files: ['images/*'], | |
tasks: ['responsive_images'] | |
} | |
}, | |
postcss: { | |
options: { | |
map: true, | |
processors: [ | |
require('autoprefixer')({browsers: ["> 5%"]}) | |
] | |
}, | |
dist: { | |
src: 'public/*.css' | |
} | |
}, | |
responsive_images: { | |
jpeg_images: { | |
options: { | |
engine: 'im', | |
sizes: [ | |
{ | |
name: '2x', | |
width: 1600, | |
quality: 30 | |
}, | |
{ | |
name: '1x', | |
width: 800, | |
quality: 30 | |
} | |
] | |
}, | |
files: [{ | |
expand: true, | |
src: ['*.{gif,jpg}'], | |
cwd: 'images/', | |
dest: 'public/images/' | |
}] | |
} | |
}, | |
/* Clear out the source directory if it exists */ | |
clean: { | |
dev: { | |
src: ['public'], | |
}, | |
}, | |
/* Generate the photos_dev directory if it is missing */ | |
mkdir: { | |
dev: { | |
options: { | |
create: ['public/images'] | |
}, | |
}, | |
}, | |
copy: { | |
main: { | |
files: [{ | |
expand: true, | |
cwd: 'images/', | |
src: ['*.svg', '*.png'], | |
dest: 'public/images/' | |
}] | |
} | |
} | |
}); | |
grunt.registerTask("sass-task", ["sass"]); | |
grunt.registerTask("clean-public", ["clean", "mkdir"]); | |
grunt.registerTask("responsive_images-task", ["responsive_images", "copy"]); | |
grunt.registerTask("build", ["clean-public", "responsive_images-task", "sass-task", "babel-task"]); | |
grunt.registerTask("default", ["build","watch"]); | |
grunt.registerTask("babel-task", ["babel"]); | |
grunt.registerTask("postcss-task", ["postcss"]); | |
grunt.registerTask("copy-task", ["copy"]); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment