我正在尝试使用该grunt-concurrent
任务来运行grunt-nodemon
以观察我的 js 脚本,并在它们发生变化时同时用于watch
静止concat
和uglify
我的文件。
当我grunt
在命令行上运行时,我得到以下无限循环:
Running "watch" task
Waiting...
Verifying property watch.concurrent.files exists in config...ERROR >> Unable to process task.
Warning: Required config property "watch.concurrent.files" missing.
阻止这种不断涌现的消息的唯一方法是退出命令行。
这是我的 gruntfile:
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
dist: {
src: [
'public/js/libs/*.js',
],
dest: 'public/js/build/production.js',
}
},
uglify: {
build: {
src: 'public/js/build/production.js',
dest: 'public/js/build/production.min.js'
}
},
css: {
files: ['css/*.scss'],
tasks: ['sass'],
options: {
spawn: false,
}
},
sass: {
dist: {
options: {
style: 'compressed'
},
files: {
'public/css/build/main.css': 'public/css/main.scss'
}
}
},
nodemon: {
dev: {
script: './start.js'
}
},
watch: {
scripts: {
files: ['js/*.js'],
tasks: ['concat','uglify'],
options: {
spawn: false,
},
},
concurrent: {
target: {
tasks: ['nodemon', 'watch'],
options: {
logConcurrentOutput: true
}
}
},
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-nodemon');
grunt.loadNpmTasks('grunt-concurrent');
grunt.registerTask('default', ['concat','uglify','sass','watch','nodemon','concurrent:target']);
};
这是我的 package.json:
{
"name": "**** *****",
"version": "1.0.0",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-imagemin": "^1.0.1",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^2.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-nodemon": "^0.4.2",
"webpack-dev-server": "^2.9.7"
},
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon ./start.js"
},
"author": "**** *******",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"mongod": "^2.0.0",
"mongoose": "^4.13.7",
"nodemon": "^1.14.1",
"normalize.css": "^6.0.0"
}
}
编辑:解决了无限循环
我仍然不认为我已经完全解决了我的问题,但我离我更近了一步......
我的watch
任务中有语法错误/遗漏:
watch: {
scripts: {
files: ['js/*.js'],
tasks: ['concat','uglify'],
options: {
spawn: false,
},
},
应该包括
watch: {
scripts: {
files: ['js/*.js'],
tasks: ['concat','uglify'],
options: {
spawn: false,
},
},
css: {
files: ['css/*.scss'],
tasks: ['sass'],
options: {
spawn: false,
},
}
},
这阻止了我的监视任务正常运行。我目前没有无限循环了。相反,我的命令行呈现这个:
Running "concat:dist" (concat) task
Running "uglify:build" (uglify) task
>> 1 file created 797.64 kB → 378.58 kB
Running "sass:dist" (sass) task
Running "nodemon:dev" (nodemon) task
[nodemon] 1.14.1
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `node ./start.js`
Express running → PORT 7777
看起来它nodemon
正在运行,但它根本没有说明我的watch
任务,当我更改我的 SCSS 文件时,什么也没有发生。我显然想grunt-concurrent
同时运行我的nodemon
和watch
任务。
如果命令行成功执行且没有任何错误,是否应该说不同的内容?
谢谢!