0

我正在尝试使用 Grunt,但出现 SyntaxError。我找不到解决方案。

MacBook-Pro-van-Maarten:Project maarten$ grunt imagemin 正在加载“Gruntfile.js”任务...错误

SyntaxError: Unexpected token ; 警告:找不到任务“imagemin”。使用 --force 继续。由于警告而中止。

Gruntfile.js

module.exports = (function(grunt) {
  grunt.initConfig({
    pkg: grunt.file.readJSON("package.json"),
    imagemin: {
      png: {
        options: {
          optimizationLevel: 7
        },
        files: [
          {
            expand: true,
            cwd: 'images_src/',
            src: ['**/*.png'],
            dest: 'images_imagemin',
            ext: '.png'
          }
        ]
      };
      jpg: {
        options: {
          progressive: true
        },
        files: [
          {
            expand: true,
            cwd: 'images_src/',
            src: ['**/*.jpg','**/*.jpeg'],
            dest: 'images_imagemin/',
            ext: '.jpg',
          }
        ]
      };
    };
  });
  grunt.loadNpmTasks('grunt-contrib-imagemin');
  grunt.registerTask('default', ['imagemin']);
});

提前致谢。

4

1 回答 1

0

看起来您的配置不是有效的 json。尝试使用,而不是 ;

module.exports = (function (grunt) {
  grunt.initConfig({
    pkg: grunt.file.readJSON("package.json"),
    imagemin: {
      png: {
        options: {
          optimizationLevel: 7
        },
        files: [
          {
            expand: true,
            cwd: 'images_src/',
            src: ['**/*.png'],
            dest: 'images_imagemin',
            ext: '.png'
          }
        ]
      },
      jpg: {
        options: {
          progressive: true
        },
        files: [
          {
            expand: true,
            cwd: 'images_src/',
            src: ['**/*.jpg', '**/*.jpeg'],
            dest: 'images_imagemin/',
            ext: '.jpg',
          }
        ]
      },
    },
  });
  grunt.loadNpmTasks('grunt-contrib-imagemin');
  grunt.registerTask('default', ['imagemin']);
});
于 2019-04-12T17:43:55.450 回答