我是grunt的新手,想要使用concat和uglify构建一个脚本。该脚本使用angularjs,因此我需要包含它。 我第一次做到了:
npm install angular
这很有效,角度安装到node_modules/angular/angular.js
我的问题是:将它包含在连接文件中的最佳实践是什么?
只是:
concat: {
seperator: ';',
dist: {
src: ['node_modules/angular/angular.js', 'src/js/**/*.js'],
dest: 'dist/<%= pkg.name %>.js'
},
或者是否有“更好”的方式将其包含在输出中?
此致
˚F