Grunt の調査を開始しました。いくつかのサイトを読んで、例を見ました。さて、package.json と Gruntfile.js を作成しました。
package.json http://pastebin.com/Kkt8fuXJ
Gruntfile.j http://pastebin.com/LnSmTzXZ
私のプロジェクトのフォルダーの構成は次のとおりです。
root (index.html)
-src (where is package.json and Gruntfile.js)
-lib
--css
---min
--js
--img
コマンドうなり声を出すと、常に次のエラーが発生します。
Loading "Gruntfile.js" tasks...ERROR
>> Error: Unable to parse "package.json" file (Unexpected token }).
Warning: Task "default" not found. Use --force to continue.
Aborted due to warnings.
pkg を削除すると: grunt.file.readJSON('package.json'),:
grunt.loadNpmTasks('grunt-contrib-imagemin');
^^^^^
Loading "Gruntfile.js" tasks...ERROR
>> SyntaxError: Unexpected identifier
Warning: Task "default" not found. Use --force to continue.
Aborted due to warnings.
なにが問題ですか?
ありがとう