module.exports = function(grunt) {? grunt.initConfig({? ? ? watch: {? ? ? ? jade: {? ? ? ? ? files: ['views/**'],? ? ? ? ? options: {? ? ? ? ? ? livereload: true? ? ? ? ? }? ? ? ? },? ? ? ? js: {? ? ? ? ? files: ['public/js/**', 'models/**/*.js', 'schemas/**/*.js'],? ? ? ? ? //tasks: ['jshint'],? ? ? ? ? options: {? ? ? ? ? ? livereload: true? ? ? ? ? }? ? ? ? },? ? ? ? nodemon: {? ? ? ? ? dev: {? ? ? ? ? ? options: {? ? ? ? ? ? ? script:'app.js',? ? ? ? ? ? ? file: 'app.js',? ? ? ? ? ? ? args: [],? ? ? ? ? ? ? ignoredFiles: ['README.md', 'node_modules/**', '.DS_Store'],? ? ? ? ? ? ? watchedExtensions: ['js'],? ? ? ? ? ? ? watchedFolders: ['./'],? ? ? ? ? ? ? debug: true,? ? ? ? ? ? ? delayTime: 1,? ? ? ? ? ? ? env: {? ? ? ? ? ? ? ? PORT: 3000? ? ? ? ? ? ? },? ? ? ? ? ? ? cwd: __dirname? ? ? ? ? ? }? ? ? ? ? }? ? ? ? },? ? ? ? mochaTest: {? ? ? ? ? options: {? ? ? ? ? ? reporter: 'spec'? ? ? ? ? },? ? ? ? ? src: ['test/**/*.js']? ? ? ? },? ? ? ? concurrent: {? ? ? ? ? tasks: ['nodemon', 'watch'],? ? ? ? ? options: {? ? ? ? ? ? logConcurrentOutput: true? ? ? ? ? }? ? ? ? }? ? ? })? ? grunt.loadNpmTasks('grunt-contrib-watch')? ? grunt.loadNpmTasks('grunt-nodemon')?? ? grunt.loadNpmTasks('grunt-concurrent')? ? grunt.option('force', true)? ? grunt.registerTask('default', ['concurrent'])? }
- 0 回答
- 0 關(guān)注
- 1277 瀏覽
添加回答
舉報(bào)
0/150
提交
取消