2014-10-16 55 views
3

因此,我使用Yeoman和Yeoman webapp生成器重新开发了我的投资组合网站。它使用Twitter Bootstrap和Sass构建。除了当我使用“grunt build”命令压缩我的网站时,一切正常。当我的网站在“dist”文件夹中重新创建时,我注意到我的html页面上的大多数xml嵌入式SVG图标都已损坏。我在“app”文件夹中与我的网站进行了比较,并且SVG代码不同。如何停止压缩SVG,或者如何改变它,以便它不会中断SVG图标?Grunt build打破SVG图像

我Gruntfile.js

// Generated on 2014-10-14 using 
// generator-webapp 0.5.0 
'use strict'; 

// # Globbing 
// for performance reasons we're only matching one level down: 
// 'test/spec/{,*/}*.js' 
// If you want to recursively match all subfolders, use: 
// 'test/spec/**/*.js' 

module.exports = function (grunt) { 

    // Time how long tasks take. Can help when optimizing build times 
    require('time-grunt')(grunt); 

    // Load grunt tasks automatically 
    require('load-grunt-tasks')(grunt); 

    // Configurable paths 
    var config = { 
    app: 'app', 
    dist: 'dist' 
    }; 

    // Define the configuration for all the tasks 
    grunt.initConfig({ 

    // Project settings 
    config: config, 

    // Watches files for changes and runs tasks based on the changed files 
    watch: { 
     bower: { 
     files: ['bower.json'], 
     tasks: ['wiredep'] 
     }, 
     js: { 
     files: ['<%= config.app %>/scripts/{,*/}*.js'], 
     tasks: ['jshint'], 
     options: { 
      livereload: true 
     } 
     }, 
     jstest: { 
     files: ['test/spec/{,*/}*.js'], 
     tasks: ['test:watch'] 
     }, 
     gruntfile: { 
     files: ['Gruntfile.js'] 
     }, 
     sass: { 
     files: ['<%= config.app %>/styles/{,*/}*.{scss,sass}'], 
     tasks: ['sass:server', 'autoprefixer'] 
     }, 
     styles: { 
     files: ['<%= config.app %>/styles/{,*/}*.css'], 
     tasks: ['newer:copy:styles', 'autoprefixer'] 
     }, 
     livereload: { 
     options: { 
      livereload: '<%= connect.options.livereload %>' 
     }, 
     files: [ 
      '<%= config.app %>/{,*/}*.html', 
      '.tmp/styles/{,*/}*.css', 
      '<%= config.app %>/images/{,*/}*' 
     ] 
     } 
    }, 

    // The actual grunt server settings 
    connect: { 
     options: { 
     port: 9000, 
     open: true, 
     livereload: 35729, 
     // Change this to '0.0.0.0' to access the server from outside 
     hostname: 'localhost' 
     }, 
     livereload: { 
     options: { 
      middleware: function(connect) { 
      return [ 
       connect.static('.tmp'), 
       connect().use('/bower_components', connect.static('./bower_components')), 
       connect.static(config.app) 
      ]; 
      } 
     } 
     }, 
     test: { 
     options: { 
      open: false, 
      port: 9001, 
      middleware: function(connect) { 
      return [ 
       connect.static('.tmp'), 
       connect.static('test'), 
       connect().use('/bower_components', connect.static('./bower_components')), 
       connect.static(config.app) 
      ]; 
      } 
     } 
     }, 
     dist: { 
     options: { 
      base: '<%= config.dist %>', 
      livereload: false 
     } 
     } 
    }, 

    // Empties folders to start fresh 
    clean: { 
     dist: { 
     files: [{ 
      dot: true, 
      src: [ 
      '.tmp', 
      '<%= config.dist %>/*', 
      '!<%= config.dist %>/.git*' 
      ] 
     }] 
     }, 
     server: '.tmp' 
    }, 

    // Make sure code styles are up to par and there are no obvious mistakes 
    jshint: { 
     options: { 
     jshintrc: '.jshintrc', 
     reporter: require('jshint-stylish') 
     }, 
     all: [ 
     'Gruntfile.js', 
     '<%= config.app %>/scripts/{,*/}*.js', 
     '!<%= config.app %>/scripts/vendor/*', 
     'test/spec/{,*/}*.js' 
     ] 
    }, 

    // Mocha testing framework configuration options 
    mocha: { 
     all: { 
     options: { 
      run: true, 
      urls: ['http://<%= connect.test.options.hostname %>:<%= connect.test.options.port %>/index.html'] 
     } 
     } 
    }, 

    // Compiles Sass to CSS and generates necessary files if requested 
    sass: { 
     options: { 
     sourcemap: true, 
     loadPath: 'bower_components' 
     }, 
     dist: { 
     files: [{ 
      expand: true, 
      cwd: '<%= config.app %>/styles', 
      src: ['*.{scss,sass}'], 
      dest: '.tmp/styles', 
      ext: '.css' 
     }] 
     }, 
     server: { 
     files: [{ 
      expand: true, 
      cwd: '<%= config.app %>/styles', 
      src: ['*.{scss,sass}'], 
      dest: '.tmp/styles', 
      ext: '.css' 
     }] 
     } 
    }, 

    // Add vendor prefixed styles 
    autoprefixer: { 
     options: { 
     browsers: ['> 1%', 'last 2 versions', 'Firefox ESR', 'Opera 12.1'] 
     }, 
     dist: { 
     files: [{ 
      expand: true, 
      cwd: '.tmp/styles/', 
      src: '{,*/}*.css', 
      dest: '.tmp/styles/' 
     }] 
     } 
    }, 

    // Automatically inject Bower components into the HTML file 
    wiredep: { 
     app: { 
     ignorePath: /^\/|\.\.\//, 
     src: ['<%= config.app %>/index.html'], 
     exclude: ['bower_components/bootstrap-sass-official/assets/javascripts/bootstrap.js'] 
     }, 
     sass: { 
     src: ['<%= config.app %>/styles/{,*/}*.{scss,sass}'], 
     ignorePath: /(\.\.\/){1,2}bower_components\// 
     } 
    }, 

    // Renames files for browser caching purposes 
    rev: { 
     dist: { 
     files: { 
      src: [ 
      '<%= config.dist %>/scripts/{,*/}*.js', 
      '<%= config.dist %>/styles/{,*/}*.css', 
      '<%= config.dist %>/images/{,*/}*.*', 
      '<%= config.dist %>/styles/fonts/{,*/}*.*', 
      '<%= config.dist %>/*.{ico,png}' 
      ] 
     } 
     } 
    }, 

    // Reads HTML for usemin blocks to enable smart builds that automatically 
    // concat, minify and revision files. Creates configurations in memory so 
    // additional tasks can operate on them 
    useminPrepare: { 
     options: { 
     dest: '<%= config.dist %>' 
     }, 
     html: '<%= config.app %>/index.html' 
    }, 

    // Performs rewrites based on rev and the useminPrepare configuration 
    usemin: { 
     options: { 
     assetsDirs: ['<%= config.dist %>', '<%= config.dist %>/images'] 
     }, 
     html: ['<%= config.dist %>/{,*/}*.html'], 
     css: ['<%= config.dist %>/styles/{,*/}*.css'] 
    }, 

    // The following *-min tasks produce minified files in the dist folder 
    imagemin: { 
     dist: { 
     files: [{ 
      expand: true, 
      cwd: '<%= config.app %>/images', 
      src: '{,*/}*.{gif,jpeg,jpg,png}', 
      dest: '<%= config.dist %>/images' 
     }] 
     } 
    }, 

    svgmin: { 
     dist: { 
     files: [{ 
      expand: true, 
      cwd: '<%= config.app %>/images', 
      src: '{,*/}*.svg', 
      dest: '<%= config.dist %>/images' 
     }] 
     } 
    }, 

    htmlmin: { 
     dist: { 
     options: { 
      collapseBooleanAttributes: true, 
      collapseWhitespace: true, 
      conservativeCollapse: true, 
      removeAttributeQuotes: true, 
      removeCommentsFromCDATA: true, 
      removeEmptyAttributes: true, 
      removeOptionalTags: true, 
      removeRedundantAttributes: true, 
      useShortDoctype: true 
     }, 
     files: [{ 
      expand: true, 
      cwd: '<%= config.dist %>', 
      src: '{,*/}*.html', 
      dest: '<%= config.dist %>' 
     }] 
     } 
    }, 

    // By default, your `index.html`'s <!-- Usemin block --> will take care 
    // of minification. These next options are pre-configured if you do not 
    // wish to use the Usemin blocks. 
    // cssmin: { 
    // dist: { 
    //  files: { 
    //  '<%= config.dist %>/styles/main.css': [ 
    //   '.tmp/styles/{,*/}*.css', 
    //   '<%= config.app %>/styles/{,*/}*.css' 
    //  ] 
    //  } 
    // } 
    // }, 
    // uglify: { 
    // dist: { 
    //  files: { 
    //  '<%= config.dist %>/scripts/scripts.js': [ 
    //   '<%= config.dist %>/scripts/scripts.js' 
    //  ] 
    //  } 
    // } 
    // }, 
    // concat: { 
    // dist: {} 
    // }, 

    // Copies remaining files to places other tasks can use 
    copy: { 
     dist: { 
     files: [{ 
      expand: true, 
      dot: true, 
      cwd: '<%= config.app %>', 
      dest: '<%= config.dist %>', 
      src: [ 
      '*.{ico,png,txt}', 
      'images/{,*/}*.webp', 
      '{,*/}*.html', 
      'styles/fonts/{,*/}*.*' 
      ] 
     }, { 
      src: 'node_modules/apache-server-configs/dist/.htaccess', 
      dest: '<%= config.dist %>/.htaccess' 
     }, { 
      expand: true, 
      dot: true, 
      cwd: '.', 
      src: 'bower_components/bootstrap-sass-official/assets/fonts/bootstrap/*', 
      dest: '<%= config.dist %>' 
     }] 
     }, 
     styles: { 
     expand: true, 
     dot: true, 
     cwd: '<%= config.app %>/styles', 
     dest: '.tmp/styles/', 
     src: '{,*/}*.css' 
     } 
    }, 

    // Run some tasks in parallel to speed up build process 
    concurrent: { 
     server: [ 
     'sass:server', 
     'copy:styles' 
     ], 
     test: [ 
     'copy:styles' 
     ], 
     dist: [ 
     'sass', 
     'copy:styles', 
     'imagemin', 
     'svgmin' 
     ] 
    } 
    }); 


    grunt.registerTask('serve', 'start the server and preview your app, --allow-remote for remote access', function (target) { 
    if (grunt.option('allow-remote')) { 
     grunt.config.set('connect.options.hostname', '0.0.0.0'); 
    } 
    if (target === 'dist') { 
     return grunt.task.run(['build', 'connect:dist:keepalive']); 
    } 

    grunt.task.run([ 
     'clean:server', 
     'wiredep', 
     'concurrent:server', 
     'autoprefixer', 
     'connect:livereload', 
     'watch' 
    ]); 
    }); 

    grunt.registerTask('server', function (target) { 
    grunt.log.warn('The `server` task has been deprecated. Use `grunt serve` to start a server.'); 
    grunt.task.run([target ? ('serve:' + target) : 'serve']); 
    }); 

    grunt.registerTask('test', function (target) { 
    if (target !== 'watch') { 
     grunt.task.run([ 
     'clean:server', 
     'concurrent:test', 
     'autoprefixer' 
     ]); 
    } 

    grunt.task.run([ 
     'connect:test', 
     'mocha' 
    ]); 
    }); 

    grunt.registerTask('build', [ 
    'clean:dist', 
    'wiredep', 
    'useminPrepare', 
    'concurrent:dist', 
    'autoprefixer', 
    'concat', 
    'cssmin', 
    'uglify', 
    'copy:dist', 
    'rev', 
    'usemin', 
    'htmlmin' 
    ]); 

    grunt.registerTask('default', [ 
    'newer:jshint', 
    'test', 
    'build' 
    ]); 
}; 

回答

-2

要停止SVG压缩删除您的并发任务svgmin电话:DIST任务(在你的文件中的行358)。

至于没有破坏图标,你需要去检查底层插件页面@https://github.com/svg/svgo并检查你的svg是否与svgo兼容。

+0

我删除了svgmin任务调用,并且SVG图标仍然断开。这导致我相信这不是SVG打破SVG图标。也许这是咕噜压缩过程的另一部分。我将破损的SVG与工作的SVG进行了比较,并且关闭路径已经移动,这可以解释为什么它们被破坏。当我将SVG声明为图像而不是嵌入它们时,它们似乎可以工作。 – 2014-10-17 13:22:59

+1

它没有帮助,因为没有SVG部署了。 – 2014-11-25 14:33:19

+0

答案不起作用,因为现在SVG在grunt构建之后不再存在于dist文件夹中。 – AdityaSaxena 2014-12-17 11:09:58

1

不知道它改变了什么格式SVGs我不能肯定地说,但有一件事缩小器处理不好,是以/>结尾的元素,它嵌套应该是标签下的兄弟的路径。

一个解决办法是改变路径所以它有一个关闭标签和内容在里面,像这样:

<svg xmlns="http://www.w3.org/2000/svg"> 
    <path d="M-115,-58L-201,479L-101,43Z" fill="#f2f7ff" stroke="#f2f7ff">.</path> 
    <path d="M-115,-58L-101,43L156,-172Z" fill="#faf8fb" stroke="#faf8fb">.</path> 
    <path d="M156,-172L-101,43L245,63Z" fill="#f1f1f8" stroke="#f1f1f8">.</path> 
</svg> 

这样,minifier保留关闭标签和层次结构。

4

svgmin有几个问题,例如一个与removeUnknownsAndDefaults和一个与collapseGroups。我在我的grunt任务中禁用了上述插件,现在我的svg文件可以正常工作,但这取决于您的svg文件,以及确切的插件打破它们。试试下面的配置,并检查它是否修复您的问题:

svgmin: { 
    options: { 
    plugins: [{ 
     collapseGroups: false 
    }, { 
     removeUnknownsAndDefaults: false 
    }] 
    }, 
    dist: { 
    files: [{ 
     expand: true, 
     cwd: '<%= path.app %>/images', 
     src: '{,*/}*.svg', 
     dest: '<%= path.dist %>/images' 
    }] 
    } 
} 

如果没有,你不想花时间,并找到svgmin插件,它会导致问题,只需从concurrent:dist任务删除svgmin任务但不要忘记在src数组内添加'images/{,*/}*.{svg}'copy:dist任务,以便将它们复制到dist /文件夹。

+0

这对我有用。我使用了第二种方法,只是按照时间按下注释和复制文件。只有我必须从'images/{,* /} *。{svg}'中删除svg中的括号,因为它不会在那里复制svg文件。 – Zanderi 2015-07-30 23:36:01

+0

感谢您的支持!添加这两个选项已经解决了我的问题与SVG工件。 – fiznool 2015-12-02 22:57:02