-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
90 lines (85 loc) · 2.8 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*!
=========================================================
* © 2025 Ronan LE MEILLAT for Les Ailes du Mont-Blanc
=========================================================
This website use:
- Vite, Vue3, FontAwesome 6, TailwindCss 3
- And many others
*/
import gulp from 'gulp'
import gap from 'gulp-append-prepend'
gulp.task("licensesSrc", async function () {
// this is to add Copyright in the production mode for the minified js
gulp
.src(["*.cjs", "*.js", "*.ts", "src/**/*.js", "functions/**/*.js", "functions/**/*.ts", "src/**/*.ts"], { base: "./" })
.pipe(
gap.prependText(`/*!
=========================================================
* © 2025 Ronan LE MEILLAT for Les Ailes du Mont-Blanc
=========================================================
This website use:
- Vite, Vue3, FontAwesome 6, TailwindCss 3
- And many others
*/`)
)
.pipe(gulp.dest("./", { overwrite: true }));
// this is to add Copyright in the production mode for the minified html
gulp
.src("src/**/*.vue", { base: "./" })
.pipe(
gap.prependText(`<!--
=========================================================
* © 2025 Ronan LE MEILLAT for Les Ailes du Mont-Blanc
=========================================================
This website use:
- Vite, Vue3, FontAwesome 6, TailwindCss 3
- And many others
-->`)
)
.pipe(gulp.dest("./", { overwrite: true }));
});
gulp.task("licenses", async function () {
// this is to add Copyright in the production mode for the minified js
gulp
.src("dist/**/*.js", { base: "./" })
.pipe(
gap.prependText(`/*!
=========================================================
* © 2025 Ronan LE MEILLAT for Les Ailes du Mont-Blanc
=========================================================
This website use:
- Vite, Vue3, FontAwesome 6, TailwindCss 3
- And many others
*/`)
)
.pipe(gulp.dest("./", { overwrite: true }));
// this is to add Copyright in the production mode for the minified html
gulp
.src("dist/index.html", { base: "./" })
.pipe(
gap.prependText(`<!--
=========================================================
* © 2025 Ronan LE MEILLAT for Les Ailes du Mont-Blanc
=========================================================
This website use:
- Vite, Vue3, FontAwesome 6, TailwindCss 3
- And many others
-->`)
)
.pipe(gulp.dest("./", { overwrite: true }));
// this is to add Copyright in the production mode for the minified css
gulp
.src("dist/**/*.css", { base: "./" })
.pipe(
gap.prependText(`/*!
=========================================================
* © 2025 Ronan LE MEILLAT for Les Ailes du Mont-Blanc
=========================================================
This website use:
- Vite, Vue3, FontAwesome 6, TailwindCss 3
- And many others
*/`)
)
.pipe(gulp.dest("./", { overwrite: true }));
return;
});