これが私のGruntfile.jsです
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
uglify: {
options: {
mangle: true
}
build: {
src: "js/*.js",
dest: "js/min/script.js"
}
}
});
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.registerTask('default', [uglify]);
};
ここに私のpackage.jsonがあります-私はnpm install
をすでに実行しています。Gruntfileで使用するすべてのプラグインで、grunt-contrib-uglifyはその中にあります。
{
"name": "bootbuckle",
"version": "0.1.0",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-sass": "~0.6.0",
"grunt-csscomb": "~2.0.1",
"grunt-contrib-htmlmin": "~0.1.3",
"grunt-contrib-imagemin": "~0.4.1",
"grunt-contrib-uglify": "~0.2.7"
}
}
ターミナルでgrunt
を実行すると、エラーが発生します。
build: {
^^^^^
Loading "Gruntfile.js" tasks...ERROR
>> SyntaxError: Unexpected identifier
Warning: Task "default" not found. Use --force to continue.
Aborted due to warnings.
あなたが提供できるかもしれない助けを事前に感謝します。
編集Mattiのガイダンスに従って、不足しているコンマを挿入しました。新しいエラーがスローされています。
Loading "Gruntfile.js" tasks...ERROR
>> ReferenceError: uglify is not defined
Warning: Task "default" not found. Use --force to continue.
Aborted due to warnings.
ここでコンマを逃しました:
uglify: {
options: {
mangle: true
}, // <-------
build: {
src: "js/*.js",
dest: "js/min/script.js"
}
}
編集:japrescottが投稿したように、uglifyタスクを文字列として定義する必要があります。
grunt.registerTask('default', ["uglify"]);
このようにしてみて
grunt.registerTask('default', ["uglify"]);