I have public resource like this:
public/
xyz/
index.html
js/
a.js
b.js
css/
a.css
b.css
I want to use gulp-useref
to build html, I change index.html
to this:
<!-- build:css /xyz/css/index.css -->
<link href="/xyz/css/a.css" rel="stylesheet" />
<link href="/xyz/css/b.css" rel="stylesheet" />
<!-- endbuild -->
<!-- build:js /xyz/js/index.js -->
<link href="/xyz/js/a.js" rel="stylesheet" />
<link href="/xyz/js/b.js" rel="stylesheet" />
<!-- endbuild -->
I write gulp like this:
gulp.task("html", async function() {
gulp.src("public/xyz/*.html")
.pipe(useref())
.pipe(gulpif("*.js", uglify()))
.pipe(gulpif("*.css", cssMin()))
.pipe(gulp.dest("dist/public/xyz"))
})
The First problem is: useref cannot find the absolute path: /xyz/js/a.js
.
Then I try to change html template to this:
<!-- build:css /xyz/css/index.css -->
<link href="css/a.css" rel="stylesheet" />
<link href="css/b.css" rel="stylesheet" />
<!-- endbuild -->
<!-- build:js /xyz/js/index.js -->
<link href="js/a.js" rel="stylesheet" />
<link href="js/b.js" rel="stylesheet" />
<!-- endbuild -->
It runs ok, Then The second problem occurs, useref produce redundant xyz
directory:
dist/
public/
xyz/
index.html
xyz/
js/
a.js
b.js
css/
a.css
b.css
In assumption that you want your directory output to look like this:
Then you need to do the following:
public
.Here's a repl.it of the code below: