Skip to content

Commit

Permalink
0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Mar 21, 2024
1 parent 7b21b7d commit dd13fa7
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 52 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/GitHub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ jobs:

env:
ADBLOCK: true
TELEMETRY_DISABLED: 1
ASTRO_TELEMETRY_DISABLED: 1
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1
AZURE_CORE_COLLECT_TELEMETRY: 0
CHOOSENIM_NO_ANALYTICS: 1
DIEZ_DO_NOT_TRACK: 1
DO_NOT_TRACK: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1
DO_NOT_TRACK: 1
ET_NO_TELEMETRY: 1
GATSBY_TELEMETRY_DISABLED: 1
GATSBY_TELEMETRY_OPT_OUT: 1
GATSBY_TELEMETRY_OPTOUT: 1
GATSBY_TELEMETRY_OPT_OUT: 1
GRIT_TELEMETRY_DISABLED: 1
HASURA_GRAPHQL_ENABLE_TELEMETRY: false
HINT_TELEMETRY: off
HOMEBREW_NO_ANALYTICS: 1
Expand All @@ -47,6 +47,7 @@ jobs:
SAM_CLI_TELEMETRY: 0
STNOUPGRADE: 1
STRIPE_CLI_TELEMETRY_OPTOUT: 1
TELEMETRY_DISABLED: 1

steps:
- uses: pozil/auto-assign-issue@v1.13.0
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/Node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:

env:
ADBLOCK: true
TELEMETRY_DISABLED: 1
ASTRO_TELEMETRY_DISABLED: 1
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1
AZURE_CORE_COLLECT_TELEMETRY: 0
CHOOSENIM_NO_ANALYTICS: 1
DIEZ_DO_NOT_TRACK: 1
DO_NOT_TRACK: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1
DO_NOT_TRACK: 1
ET_NO_TELEMETRY: 1
GATSBY_TELEMETRY_DISABLED: 1
GATSBY_TELEMETRY_OPT_OUT: 1
GATSBY_TELEMETRY_OPTOUT: 1
GATSBY_TELEMETRY_OPT_OUT: 1
GRIT_TELEMETRY_DISABLED: 1
HASURA_GRAPHQL_ENABLE_TELEMETRY: false
HINT_TELEMETRY: off
HOMEBREW_NO_ANALYTICS: 1
Expand All @@ -50,6 +50,7 @@ jobs:
SAM_CLI_TELEMETRY: 0
STNOUPGRADE: 1
STRIPE_CLI_TELEMETRY_OPTOUT: 1
TELEMETRY_DISABLED: 1

strategy:
matrix:
Expand Down
85 changes: 40 additions & 45 deletions Configuration/ESBuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,49 +3,44 @@
*
*/
export default {
color: true,
format: "esm",
metafile: true,
minify: true,
outdir: "Target",
platform: "node",
target: "esnext",
write: true,
logLevel: "debug",
plugins: [
{
name: "Target",
setup({ onStart, initialOptions: { outdir } }) {
onStart(async () => {
try {
outdir
? await (await import("fs/promises")).rm(outdir, {
recursive: true,
})
: {};
} catch (_Error) {
console.log(_Error);
}
});
},
},
(await import("esbuild-plugin-copy")).copy({
resolveFrom: "out",
assets: [
{
from: "./Source/Stylesheet/Theme.css",
to: "./Stylesheet/",
},
],
}),
],
define: {
"process.env.VERSION_PACKAGE": `'${
(
await (
await import("../Target/Function/JSON.js")
).default("package.json")
)?.version
}'`,
},
color: true,
format: "esm",
metafile: true,
minify: true,
outdir: "Target",
platform: "node",
target: "esnext",
write: true,
logLevel: "debug",
plugins: [
{
name: "Target",
setup({ onStart, initialOptions: { outdir } }) {
onStart(async () => {
try {
outdir
? await (await import("fs/promises")).rm(outdir, {
recursive: true,
})
: {};
}
catch (_Error) {
console.log(_Error);
}
});
},
},
(await import("esbuild-plugin-copy")).copy({
resolveFrom: "out",
assets: [
{
from: "./Source/Stylesheet/Theme.css",
to: "./Stylesheet/",
},
],
}),
],
define: {
"process.env.VERSION_PACKAGE": `'${(await (await import("../Target/Function/JSON.js")).default("package.json"))?.version}'`,
},
};
2 changes: 1 addition & 1 deletion Target/Class/TypeScriptDocument.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env node
var e=new(await import("commander")).Command().name("TypeScriptDocument").version("0.0.3").description("\u{1F4C3} Document TypeScript.").argument("<File...>","Document File.").action((await import("../Function/Document.js")).default).parse();export{e as default};
var e=new(await import("commander")).Command().name("TypeScriptDocument").version("0.0.4").description("\u{1F4C3} Document TypeScript.").argument("<File...>","Document File.").action((await import("../Function/Document.js")).default).parse();export{e as default};

0 comments on commit dd13fa7

Please sign in to comment.