wwwgjs:creating_your_first_grunt_task
Créer un fichier de configuration gruntfile.js
module.exports = function(grunt) { grunt.initConfig({} concat: { dist : { // dist peut être appelé autrement src: ['components/scripts/*.js'], // version non ordonnée // src: ['zulu.js', 'alpha.js', 'lima.js'], // version ordonnée dest: 'builds/development/js/script.js', }, }, ); // initConfig grunt.loadNpmTasks('grunt-contrib-concat'); }; // wrapper function
npm install grunt --save-dev
npm install grunt-contrib-concat --save-dev
wwwgjs/creating_your_first_grunt_task.txt · Last modified: 2016/03/29 10:11 by leo