Changeset 533 for Dev/trunk/Gruntfile.js
- Timestamp:
- 06/08/15 20:05:47 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/Gruntfile.js
r531 r533 27 27 //,'amd-check' // too smart about plugins, r.js can't find them 28 28 ]); 29 grunt.registerTask('watch-client', 30 "Watch client source and recompile when things change.", 31 ['watch:client']); 29 32 grunt.registerTask('run', 30 33 "Compile and start the server locally with foreman.", … … 287 290 banner: '/* This JS file is generated, All edits will be lost on recompile. */'}, 288 291 files: { src: dest(coffeeMap) }} 292 }, 293 watch: { 294 client: { 295 files: [ srcDir+'client/qed-client/**' ], 296 tasks: [ 'compile' ] 297 } 289 298 } 290 299 }); … … 300 309 grunt.loadNpmTasks('grunt-contrib-jshint'); 301 310 grunt.loadNpmTasks('grunt-contrib-less'); 311 grunt.loadNpmTasks('grunt-contrib-watch'); 302 312 grunt.loadNpmTasks('grunt-dojo'); 303 313 grunt.loadNpmTasks('grunt-git-deploy');
Note: See TracChangeset
for help on using the changeset viewer.