1
0
Fork 0
mirror of https://github.com/zrgn/zrgn.github.io synced 2024-11-14 12:48:49 +00:00
zrgn.github.io/Gruntfile.js

14 lines
No EOL
377 B
JavaScript

module.exports = function (grunt) {
grunt.initConfig({
bower: { install: { options: {
copy: true,
targetDir: 'assets'
} } },
clean: [ 'assets', 'bower_components' ]
});
grunt.loadNpmTasks('grunt-bower-task');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.registerTask('default', [ 'clean', 'bower' ]);
};