Gruntコマンドを使用すると、次のエラーが表示されます。
$ grunt
Loading "Gruntfile.js" tasks...ERROR
>> Error: Cannot find module 'load-grunt-tasks'
Warning: Task "default" not found. Use --force to continue.
Aborted due to warnings.
Execution Time (2015-02-07 18:05:42 UTC)
loading tasks 339ms ███████████████████████████████████████████████ 99%
Total 344ms
私はすでに試しました-npm install、npm updateコマンド。誰かがこれで私を助けることができればそれは素晴らしいことです。ありがとう!
Gruntfile.jsのコンテンツの追加
'use strict';
var paths = {
js: ['*.js', 'test/**/*.js', '!test/coverage/**', '!bower_components/**', 'packages/**/*.js', '!packages/**/node_modules/**', '!packages/contrib/**/*.js', '!packages/contrib/**/node_modules/**'],
html: ['packages/**/public/**/views/**', 'packages/**/server/views/**'],
css: ['!bower_components/**', 'packages/**/public/**/css/*.css', '!packages/contrib/**/public/**/css/*.css']
};
module.exports = function(grunt) {
if (process.env.NODE_ENV !== 'production') {
require('time-grunt')(grunt);
}
// Project Configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
assets: grunt.file.readJSON('config/assets.json'),
clean: ['bower_components/build'],
watch: {
js: {
files: paths.js,
tasks: ['jshint'],
options: {
livereload: true
}
},
html: {
files: paths.html,
options: {
livereload: true,
interval: 500
}
},
css: {
files: paths.css,
tasks: ['csslint'],
options: {
livereload: true
}
}
},
jshint: {
all: {
src: paths.js,
options: {
jshintrc: true
}
}
},
uglify: {
core: {
options: {
mangle: false
},
files: '<%= assets.core.js %>'
}
},
csslint: {
options: {
csslintrc: '.csslintrc'
},
src: paths.css
},
cssmin: {
core: {
files: '<%= assets.core.css %>'
}
},
nodemon: {
dev: {
script: 'server.js',
options: {
args: [],
ignore: ['node_modules/**'],
ext: 'js,html',
nodeArgs: ['--debug'],
delayTime: 1,
cwd: __dirname
}
}
},
concurrent: {
tasks: ['nodemon', 'watch'],
options: {
logConcurrentOutput: true
}
},
mochaTest: {
options: {
reporter: 'spec',
require: [
'server.js',
function() {
require('meanio/lib/core_modules/module/util').preload(__dirname + '/packages/**/server', 'model');
}
]
},
src: ['packages/**/server/tests/**/*.js']
},
env: {
test: {
NODE_ENV: 'test'
}
},
karma: {
unit: {
configFile: 'karma.conf.js'
}
}
});
//Load NPM tasks
require('load-grunt-tasks')(grunt);
/**
* Default Task
*/
grunt.hook.Push('clean', -9999);
grunt.hook.Push('concurrent', 9999);
if (process.env.NODE_ENV === 'production') {
grunt.hook.Push('cssmin', 100);
grunt.hook.Push('uglify', 200);
} else {
grunt.hook.Push('jshint', -200);
grunt.hook.Push('csslint', 100);
}
//Default task.
grunt.registerTask('default', ['hook']);
//Test task.
grunt.registerTask('test', ['env:test', 'mochaTest', 'karma:unit']);
// For Heroku users only.
// Docs: https://github.com/linnovate/mean/wiki/Deploying-on-Heroku
grunt.registerTask('heroku:production', ['cssmin', 'uglify']);
};
実行してみてください:
$ npm install
その後、それを実行してもエラーが続く場合、または別のエラーがある場合は、Ruby、コンパス、またはその両方をインストールしていない可能性があります:)
私は同じ問題を抱えていました、私にとっての問題は、実際に必要なNPMパッケージをインストールしなかったpackage.jsonにあり、以前考えられていたように自動的にインストールされませんでした。やってみて
npm install --save-dev load-grunt-tasks
それでもうまくいかない場合は、package.jsonファイルも提供してください。そうすれば、もう少し情報を入手できます。
私はあなたが持っていたのと同じ問題を抱えていた、それはまるで必要な初期化ステップがgruntfileにないようです。
これを変更することにより:
require('load-grunt-tasks')(grunt);
/**
* Default Task
*/
grunt.hook.Push('clean', -9999);
これに:
require('load-grunt-tasks')(grunt);
grunt.loadNpmTasks('grunt-hook');
/**
* Default Task
*/
grunt.hook.Push('clean', -9999);
Grunt.loadNpmTasks呼び出しを追加すると、その問題を乗り越えることができます。問題は、今私が得ている
タスク「クリーン」が見つかりません。 --forceを使用して続行します。
Gruntファイルの残りを見ると、きれいにするための登録タスクが表示されません。 mean.io docs に移動すると、ビルドが失敗しているように見えます。おそらくこれが理由の一部でしょうか?私はgulpバージョンのmean-cliを尋ねたと思う、それがおそらく理由です。削除して上から取ります:)
この問題は、npm依存関係が宣言されている場所と、Herokuがそれらを処理する方法に関連していると思います。簡単に言うと、npmパッケージがdev依存関係にあるかどうかを確認し、ここで提案されているように、依存関係ブロックに移動します: https://stackoverflow.com/a/20687098/532912 。