使用gulp-inject将资源注入index.html时,我遇到了一个问题。
我有以下应用程序样式,供应商js代码和app js代码:
// Vendor JS code
var vendorStream = gulp.src(mainBowerFiles({
paths: {
bowerDirectory: config.bowerDir
},
checkExistence: true
}))
.pipe(concat('vendors.js'))
.pipe(gulp.dest(config.bowerLibDist))
.pipe(size({
title:"Vendor JS code"
}));
// JS App Code
var jsStream = gulp.src(config.jsSrcPath)
.pipe(concat('app.js'))
.pipe(uglify())
.pipe(gulp.dest(config.jsDistFolder))
.pipe(size({
title:"App js code"
}));
// SASS App Code
var cssStream = gulp.src(config.sassSrcPath)
.pipe(sass({
outputStyle: 'compressed'
})
.on('error', sass.logError))
.pipe(autoprefixer())
.pipe(gulpIf(config.production, cssnano()))
.on("error", notify.onError(function (error) {
return "Error: " + error.message;
})).pipe(gulp.dest(config.cssDistFolder))
.pipe(size({
title:"Styles"
}));
我想要做的是将index.ml注入这些资源并通过以下任务将它们放在dist目录中:
gulp.task('inject', function() {
return gulp.src('index.html', {cwd: './app'})
.pipe(inject(es.merge(vendorStream, jsStream, cssStream)))
.pipe(htmlmin({collapseWhitespace: true}))
.pipe(gulp.dest(config.distFolder));
});
这样可以正常工作,但问题是该路径还包含dist目录。这是发布基目录:
// Starts a server using the production build
gulp.task('server', ['build'], function () {
connect.server({
root: './dist',
hostname: '0.0.0.0',
port: 90
});
});
我怎样才能配置gulp-inject而不是
<script src="/dist/js/app.js"></script>
是
<script src="js/app.js"></script>
谢谢:)
答案 0 :(得分:1)
其中一种方法是使用transform function。
gulp.task('inject', function() {
return gulp.src('index.html', {cwd: './app'})
.pipe(inject(
es.merge(vendorStream, jsStream, cssStream),
{
transform: function( filepath, file, index, length, targetFile ) {
return inject.transform.call(inject.transform, filepath.replace(/\/dist\//, ""), file, index, length, targetFile);
}
}
))
.pipe(htmlmin({collapseWhitespace: true}))
.pipe(gulp.dest(config.distFolder));
});
如果您只想更改文件名,也可以保留初始转换功能。