-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
27 lines (23 loc) · 861 Bytes
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const gulp = require("gulp");
const gap = require("gulp-append-prepend");
gulp.task("licenses", async function() {
//TODO: do I need this ?
// this is to add Creative Tim licenses in the production mode for the minified js
gulp
.src("build/static/js/*chunk.js", { base: "./" })
.pipe(
gap.prependText(`/**/`)
)
.pipe(gulp.dest("./", { overwrite: true }));
// this is to add Creative Tim licenses in the production mode for the minified html
gulp
.src("build/index.html", { base: "./" })
.pipe(gap.prependText(`<!---->`))
.pipe(gulp.dest("./", { overwrite: true }));
// this is to add Creative Tim licenses in the production mode for the minified css
gulp
.src("build/static/css/*chunk.css", { base: "./" })
.pipe(gap.prependText(`/**/`))
.pipe(gulp.dest("./", { overwrite: true }));
return;
});