Changeset 533
- Timestamp:
- 06/08/15 20:05:47 (10 years ago)
- Location:
- Dev/trunk
- Files:
-
- 373 added
- 2 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'); -
Dev/trunk/package.json
r517 r533 24 24 "grunt-git-deploy": "~0.1.1", 25 25 "grunt-svninfo": "~0.1.4", 26 "grunt-http": "^1.1.0" 26 "grunt-http": "^1.1.0", 27 "grunt-contrib-watch": "^0.6.1" 27 28 }, 28 29 "dependencies": {}
Note: See TracChangeset
for help on using the changeset viewer.