我很难过这个。我现在通过CLI和WebStorm使用Grunt一段时间了。今天我通过WebStorm Grunt面板运行了一些手动Grunt任务,似乎发生了一些神奇的事情,我无法再在这个项目上运行任何任务(无论是通过WebStorm还是命令行)。我已经尝试了重新安装grunt / grunt-cli,重新启动我的电脑,缩短grunt文件无济于事的一切。下面是一个带有问题输出的超缩写Gruntfile.js。关于可能发生的事情以及如何恢复我的构建环境的任何想法都非常感谢!
Carlos@XPS8500 ~/git/Test
$ cat Gruntfile.js
'use strict';
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt);
grunt.initConfig({
copy: {
dist: {
files: [
{
expand: true,
cwd: '.',
src: 'package.json',
dest: 'package.xxx'
}
]
}
}
});
grunt.registerTask('test', 'Test', function(){
grunt.task.run('copy:dist');
});
};
Carlos@XPS8500 ~/git/Test
$ grunt --verbose test
Initializing
Command-line options: --verbose
Reading "Gruntfile.js" Gruntfile...OK
Registering Gruntfile tasks.
Initializing config...OK
Loading "Gruntfile.js" tasks...OK
+ test
Running tasks: test
Running "test" task
Warning: Task "copy:dist" not found. Use --force to continue.
Aborted due to warnings.
Carlos@XPS8500 ~/git/Test