Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Mar 15, 2024
1 parent 972badf commit e4bdd2c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ representative at an online or offline event.

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
[email protected]. All complaints will be reviewed and investigated
[email protected]. All complaints will be reviewed and investigated
promptly and fairly. All community leaders are obligated to respect the privacy
and security of the reporter of any incident.

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ representative at an online or offline event.

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
[email protected]. All complaints will be reviewed and investigated
[email protected]. All complaints will be reviewed and investigated
promptly and fairly. All community leaders are obligated to respect the privacy
and security of the reporter of any incident.

Expand Down
8 changes: 2 additions & 6 deletions Source/Function/File.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ export default (async (...[Path]: Parameters<Type>) => {
(
await import("path")
).dirname(
(
await import("url")
).fileURLToPath(import.meta.url),
(await import("url")).fileURLToPath(import.meta.url),
),
)
)?.compilerOptions,
Expand All @@ -38,9 +36,7 @@ export default (async (...[Path]: Parameters<Type>) => {
Path.replace(".ts", ".js"),
(await import("typescript")).default.transpile(
(
await (
await import("fs/promises")
).readFile(Path, "utf-8")
await (await import("fs/promises")).readFile(Path, "utf-8")
).toString(),
options,
),
Expand Down
9 changes: 3 additions & 6 deletions Source/Variable/ESBuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@ export default {
onStart(async () => {
try {
outdir
? await (await import("fs/promises")).rm(
outdir,
{
recursive: true,
},
)
? await (await import("fs/promises")).rm(outdir, {
recursive: true,
})
: {};
} catch (_Error) {
console.log(_Error);
Expand Down
11 changes: 3 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@
"version": "0.4.0",
"private": false,
"description": "🌀 Builds all your TypeScript files into JavaScript.",
"keywords": [
"javascript",
"typescript",
"esbuild",
"typedoc"
],
"keywords": ["javascript", "typescript", "esbuild", "typedoc"],
"homepage": "https://github.com/Playform/TypeScriptESBuild#readme",
"bugs": {
"url": "https://github.com/Playform/TypeScriptESBuild/issues"
Expand All @@ -20,7 +15,7 @@
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Nikola R. Hristov",
"email": "[email protected]",
"email": "[email protected]",
"url": "https://nikolahristov.tech"
},
"type": "module",
Expand All @@ -36,7 +31,7 @@
"@types/node": "20.11.27",
"commander": "12.0.0",
"deepmerge-ts": "5.1.0",
"esbuild": "0.20.1",
"esbuild": "0.20.2",
"esbuild-plugin-copy": "2.1.1",
"fast-glob": "3.3.2",
"typedoc": "0.25.12",
Expand Down

0 comments on commit e4bdd2c

Please sign in to comment.