Skip to content

Commit 9aa50bd

Browse files
0.0.3
1 parent 8dc8a1e commit 9aa50bd

40 files changed

+152
-137
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/Access.Uint8ArrayFromObject.htmlβ€Ž

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

β€ŽDocumentation/Function/Access.access.htmlβ€Ž

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

β€ŽDocumentation/Function/Decrypt.decrypt.htmlβ€Ž

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

β€ŽDocumentation/Function/Encrypt.encrypt.htmlβ€Ž

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

β€ŽDocumentation/Function/Get.get.htmlβ€Ž

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

β€ŽDocumentation/Function/Put.put.htmlβ€Ž

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

β€ŽDocumentation/Function/Redirect.redirect.htmlβ€Ž

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

β€ŽDocumentation/Function/Response.response-1.htmlβ€Ž

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

0 commit comments

Comments
Β (0)