-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.js
137 lines (122 loc) · 3.95 KB
/
dev.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import { join } from "node:path";
import http2 from "node:http2";
import console from "console-ansi";
import { create as browserSyncCreate } from "browser-sync";
import pDebounce from "p-debounce";
import install from "./install.js";
import { types, lint } from "./build.js";
import { getFileExtension, htmlHotInject } from "./utils.js";
const dev = async (options = {}) => {
if (options.lint) await lint(options.cwd, options.files, options);
if (options.serve) {
const bs = browserSyncCreate();
if (options.lint || options.ts) {
bs.use({
plugin() {},
hooks: {
"client:js": /* js */ `window.___browserSync___.socket.on("console:log", (data) => { console.log(data); });`,
},
});
bs.watch(options.files, async (event, file) => {
if (event === "change") {
const results = await lint(
options.cwd,
[join(options.cwd, file)],
options,
);
if (results) {
bs.sockets.emit("console:log", `[snowdev] ESLint Error:${results}`);
}
}
});
}
const watchOptions = { ignoreInitial: true };
const onDependencyChange = pDebounce(async () => {
await install(options);
if (options.hmr) bs.sockets.emit("reload");
}, 500);
// Install on package.json change
bs.watch("package.json", watchOptions, async (event) => {
if (event === "change") await onDependencyChange();
});
// Install on directory change in node_modules
bs.watch("node_modules/!(.*){,/*/}", watchOptions, async (event) => {
if (["addDir", "unlinkDir"].includes(event)) await onDependencyChange();
});
// HMR
if (options.hmr) {
bs.use({
plugin() {},
hooks: {
"client:js": /* js */ `window.___browserSync___.socket.on("reload", () => { location.href = location.href });`,
},
});
bs.watch(
[
options.files,
`${options.rollup.output.dir}/**/*.js`,
"examples/**/*.js",
"**/*.{html,css}",
],
watchOptions,
async (event, file) => {
if (event === "change") {
if (getFileExtension(file) === ".js") {
console.info(`File changed: "${file}"`);
bs.sockets.emit("hmr", { data: file });
} else {
console.info(`File changed: "${file}". Reloading.`);
bs.sockets.emit("reload");
}
}
},
);
}
if (options.http2) http2.createServer = http2.createSecureServer;
bs.init(
{
server: {
baseDir: options.cwd,
middleware: async (req, res, next) => {
if (options.crossOriginIsolation) {
res.setHeader("Cross-Origin-Opener-Policy", "same-origin");
res.setHeader("Cross-Origin-Embedder-Policy", "require-corp");
}
// HMR
if (options.hmr && getFileExtension(req.url) === ".html") {
res.end(await htmlHotInject(options, req));
} else {
next();
}
},
},
httpModule: options.browsersync?.https && options.http2 && "node:http2",
codeSync: !options.hmr,
logPrefix: "snowdev:browser-sync",
...(options.browsersync || {}),
...(options.argv || {}),
},
async () => {
try {
await install(options);
if (options.ts) {
await types(options.cwd, null, options, (results) => {
if (results) {
bs.sockets.emit(
"console:log",
`[snowdev] TypeScript Error:\n${results}`,
);
}
});
}
} catch (error) {
console.error(error);
}
},
);
} else if (options.ts) {
await types(options.cwd, null, options, true);
}
};
dev.description = `Start dev server and install ESM dependencies.`;
export default dev;