Skip to content

Commit 115870c

Browse files
0.0.3
1 parent f0b567a commit 115870c

File tree

15 files changed

+83
-64
lines changed

15 files changed

+83
-64
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.3
2+
3+
- Cleanup
4+
15
## 0.0.2
26

37
- Cleanup

Configuration/ESBuild.js

Lines changed: 31 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,33 @@
11
export default {
2-
color: true,
3-
format: "esm",
4-
metafile: true,
5-
minify: false,
6-
outdir: "Target",
7-
platform: "node",
8-
target: "esnext",
9-
write: true,
10-
logLevel: "debug",
11-
plugins: [
12-
{
13-
name: "Target",
14-
setup({ onStart, initialOptions: { outdir } }) {
15-
onStart(async () => {
16-
try {
17-
outdir
18-
? await (
19-
await import("fs/promises")
20-
).rm(outdir, {
21-
recursive: true,
22-
})
23-
: {};
24-
} catch (_Error) {
25-
console.log(_Error);
26-
}
27-
});
28-
},
29-
},
30-
],
31-
define: {
32-
"process.env.VERSION_PACKAGE": `'${(await (await import("typescript-esbuild/Target/Function/JSON.js")).default("package.json"))?.version}'`,
33-
},
2+
color: true,
3+
format: "esm",
4+
metafile: true,
5+
minify: false,
6+
outdir: "Target",
7+
platform: "node",
8+
target: "esnext",
9+
write: true,
10+
logLevel: "debug",
11+
plugins: [
12+
{
13+
name: "Target",
14+
setup({ onStart, initialOptions: { outdir } }) {
15+
onStart(async () => {
16+
try {
17+
outdir
18+
? await (await import("fs/promises")).rm(outdir, {
19+
recursive: true,
20+
})
21+
: {};
22+
}
23+
catch (_Error) {
24+
console.log(_Error);
25+
}
26+
});
27+
},
28+
},
29+
],
30+
define: {
31+
"process.env.VERSION_PACKAGE": `'${(await (await import("typescript-esbuild/Target/Function/JSON.js")).default("package.json"))?.version}'`,
32+
},
3433
};

Documentation/Function/Worker.Redirect.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Documentation/Function/Worker.Response.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Documentation/Interface/Worker.Type-1.html

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

Documentation/Interface/Worker.Type.html

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

Documentation/Module/Worker.html

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

Documentation/Variable/Worker.worker.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Documentation/assets/icons.js

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)