次のgulpタスクがあります:
gulp.task('html', function () {
// Compile templates
return gulp.src(templateFiles)
.pipe(htmlmin({
removeComments: true,
collapseWhitespace: true,
conservativeCollapse: true,
removeScriptTypeAttributes: true
}))
.pipe(ngHtml2Js({
moduleName: 'my.tpls',
prefix: 'tpl/'
}))
.pipe(concat(libName + '.tpls.js'))
.pipe(gulp.dest(destDirectory));
});
これにより、ファイル内に次のようなコード ブロックがいくつか生成されます。
(function(module) {
try {
module = angular.module('my.tpls');
} catch (e) {
module = angular.module('my.tpls', []);
}
module.run(['$templateCache', function($templateCache) {
$templateCache.put('tpl/my/templates/template1.html',
'<some-html></<some-html>');
}]);
})();
(function(module) {
try {
module = angular.module('my.tpls');
} catch (e) {
module = angular.module('my.tpls', []);
}
module.run(['$templateCache', function($templateCache) {
$templateCache.put('tpl/my/templates/template2.html',
'<some-html></<some-html>');
}]);
})();
これは非常に非効率的で、不要な余分なバイトを大量にダウンロードするように設定します。
結果をより似たものにするためにgulpタスクを微調整する方法はありますか:
(function(module) {
try {
module = angular.module('my.tpls');
} catch (e) {
module = angular.module('my.tpls', []);
}
module.run(['$templateCache', function($templateCache) {
$templateCache.put('tpl/my/templates/template1.html',
'<some-html></<some-html>');
$templateCache.put('tpl/my/templates/template2.html',
'<some-html></<some-html>');
}]);
})();
明確にするために; 私が探しているのは、grunt-html2js singleModule オプションと同等ですが、Gulp の場合です。私はすでに ngHtml2Jsの gulpsingleModule: true
タスク オプションを追加しようとしました。うまくいきませんでした。