在没有所有非生产文件的情况下生成聚合物应用程序的zip

时间:2014-10-10 21:41:45

标签: javascript polymer bower

如果使用bower设置Polymer应用程序,则会获得无数的不需要的文件。想想

  • 未导入的代码
  • 大多数/bower_components/
  • 中的README.md和文档
  • 在大多数/bower_components/
  • 中演示文件

如果您在http服务器上运行它并不重要,但如果您想将其捆绑为打包的应用程序,它确实变得很重要。现在,使用vulcanize可以内联所有html标记,但是生成的文件仍然具有类似

的引用
<polymer-element [...] assetpath="bower_components/core-icon/">

根本没有真正解决问题。我很难相信我是唯一遇到这个问题的人,所以我做错了什么或什么?

1 个答案:

答案 0 :(得分:1)

您可以使用Grunt生成生产代码。我已经附上了一个基本的grunt配置,可以帮助你。

该脚本假设以下grunt插件:

    grunt-contrib-clean
    grunt-contrib-concat
    grunt-cssc
    grunt-dom-munger
    matchdep

示例grunt.js:

    module.exports = function (grunt) {

    grunt.initConfig({
            pkg: grunt.file.readJSON('package.json'),
            dom_munger: {
                read: {
                    options: {
                        read: [
                            {selector: 'link', attribute: 'href', writeto: 'CssRefs', isPath: true},
                            {selector: 'script[src]', attribute: 'src', writeto: 'JsRefs', isPath: true}
                        ]
                    },
                    src: 'src/index.html'
                },
                urlRewrite: {
                    options: {
                        remove: ['link', 'script'],
                        append: [
                            {selector: 'head', html: '<link href="style/screen.css" rel="stylesheet" />'},
                            {selector: 'body', html: '<script src="script/main.app"></script>'}
                        ]
                    },
                    src: ['dist/index.html']
                }
            },
            concat: {
                options: {
                    separator: ';'
                },
                dist: {
                    files: {
                        'dist/script/main.js': ['<%= dom_munger.data.JsRefs %>']
                    }
                }
            },
            cssc: {
                dist: {
                    options: {
                        sortSelectors: false,
                        lineBreaks: false,
                        sortDeclarations: false,
                        consolidateViaDeclarations: false,
                        consolidateViaSelectors: false,
                        consolidateMediaQueries: false
                    },
                    files: {
                        'dist/style/screen.css': ['<%= dom_munger.data.CssRefs %>']
                    }
                }
            },
            clean: {
                dist: {
                    src: ['dist']
                }
            }
        }
    );

//Load all required grunt plugins
    require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);

//Custom Tasks
    grunt.registerTask('default', ['clean', 'dom_munger:read', 'concat', 'cssc', 'dom_munger:urlRewrite']);
};

这只是一个基本的例子,您可以根据自己的需要进行扩展。