7

有没有办法自动将所有 Bower 安装的库合并并缩小到 1 个文件中?

首先我尝试了最基本的方法:合并.js所有子目录中的所有文件:

uglify: {
    options: {compress: true},
    my_target: { files: {
        'vendor.js': ['bower_components/**/*.js'],
}   }   }

但这显然是一种不好的做法。由于错误太多,它也不起作用。

我手动删除了所有文件,只保留了每个库拥有的 1 个(主)文件,并且它工作正常。

有没有办法自动完成这一切?

另外,是否建议这样做?(即将所有供应商库合并到 1 个文件中)

4

2 回答 2

12

我推荐 2 个不错的 grunt 库,Wiredep 和 Usemin 的组合:

Wiredep:自动加载在您的 html 中的 bower.json 中标识的 bower 的所有依赖项

Usemin:检测两个评论标签内的所有 src,所有源代码都在 dist 文件夹中被缩小和连接,下面是一个使用这个包的 grunt 文件的小例子,基于 angular 到 yeoman 的生成器,这只是一个简短的咕哝

咕噜声

    wiredep: {
        options: {
            cwd: 'appFolder'
        },
        app: {
            src: ['htmlCollections'],
            ignorePath:  /\.\.\//
        }
    },

    useminPrepare: {
        html: 'htmlCollections',
        options: {
            dest: 'distributionFolder',
            flow: {
                html: {
                    steps: {
                        js: ['concat', 'uglifyjs'],
                        css: ['cssmin']
                    },
                    post: {}
                }
            }
        }
    },

  usemin: {
        html: ['distributionFolder+HtmlFiles'],
        css: ['distributionFolder+cssFiles'],
        js: ['distributionFolder+javascriptFiles']
  }

HTML

<!doctype html>
<html lang="en" ng-app="MobileDev" id="ng-app">
<head>
    <!-- build:css(app) styles/vendor.css -->
    <!-- bower:css -->
            //This gonna be generated for the grunt by dependencies in bower
    <!-- endbower -->
    <!-- endbuild -->

    <!-- build:css(.tmp) styles/main.css -->
        //All the script inside this gonna be concatened and minified in 
        //the dist folder by the name of main.css
        <link type="text/css" rel="stylesheet" href="styles/app.css"/>
    <!-- endbuild -->
</head>

<body>
    <!-- build:js(app) scripts/vendor.js -->
    <!-- bower:js -->
        //This gonna be generated for the grunt by dependencies in bower
        //And in distribution all bower components added gonna be minified by usemin in
        //vendor.js
    <!-- endbower -->
    <!-- endbuild -->

    <!-- build:js({.tmp,app}) scripts/scripts.js -->
        //All the script inside this gonna be concatened and minified in the dist 
        //folder by the name of scripts.js
        <script type="text/javascript" src="scripts/numero1"></script>
        <script type="text/javascript" src="scripts/numero2"></script>
    <!-- endbuild -->

</body>
于 2014-08-18T13:39:09.730 回答
5

刚需wiredep

uglify: {
    options: { compress: true },
    my_target: { 
        files: { 'public/vendor.js': require('wiredep')().js
}   }   },
cssmin: {
    minify: {
        files: { 'public/vendor.css': require('wiredep')().css
}   }   },
于 2014-08-15T10:12:47.970 回答