Skip to content

Commit d6d7975

Browse files
committed
[APERTURE] refactor: hard-fork esbuild
Signed-off-by: Christian Stewart <christian@aperture.us>
1 parent 556795b commit d6d7975

File tree

187 files changed

+1688
-1690
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+1688
-1690
lines changed

CHANGELOG-2020.md

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

CHANGELOG-2021.md

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

CHANGELOG-2022.md

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

CHANGELOG-2023.md

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

CHANGELOG-2024.md

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

CHANGELOG.md

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ test-deno: esbuild platform-deno
102102
@echo '✅ deno tests passed' # I couldn't find a Deno API for telling when tests have failed, so I'm doing this here instead
103103
ESBUILD_BINARY_PATH="$(shell pwd)/esbuild" deno eval 'import { transform, stop } from "file://$(shell pwd)/deno/mod.js"; console.log((await transform("1+2")).code); stop()' | grep "1 + 2;"
104104
ESBUILD_BINARY_PATH="$(shell pwd)/esbuild" deno eval 'import { transform, stop } from "file://$(shell pwd)/deno/wasm.js"; console.log((await transform("1+2")).code); stop()' | grep "1 + 2;"
105-
ESBUILD_BINARY_PATH="$(shell pwd)/esbuild" deno run -A './deno/mod.js' # See: https://github.com/evanw/esbuild/pull/3917
105+
ESBUILD_BINARY_PATH="$(shell pwd)/esbuild" deno run -A './deno/mod.js' # See: https://github.com/aperturerobotics/esbuild/pull/3917
106106

107107
test-deno-windows: esbuild platform-deno
108108
ESBUILD_BINARY_PATH=./esbuild.exe deno test --allow-run --allow-env --allow-net --allow-read --allow-write --no-check scripts/deno-tests.js

RUNBOOK.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Pushing a change to [`version.txt`](./version.txt) causes the following:
2121

2222
1. Build and publish all npm packages to npm using trusted publishing
2323
2. Create a tag for the release that looks like `v0.X.Y`
24-
3. Publish a [GitHub Release](https://github.com/evanw/esbuild/releases) containing the release notes in [`CHANGELOG.md`](./CHANGELOG.md)
24+
3. Publish a [GitHub Release](https://github.com/aperturerobotics/esbuild/releases) containing the release notes in [`CHANGELOG.md`](./CHANGELOG.md)
2525

2626
- The [`release.yml`](https://github.com/esbuild/deno-esbuild/blob/main/.github/workflows/release.yml)
2727
workflow in the https://github.com/esbuild/deno-esbuild repo runs

cmd/esbuild/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"strings"
99
"time"
1010

11-
"github.com/evanw/esbuild/internal/api_helpers"
12-
"github.com/evanw/esbuild/internal/logger"
13-
"github.com/evanw/esbuild/pkg/cli"
11+
"github.com/aperturerobotics/esbuild/internal/api_helpers"
12+
"github.com/aperturerobotics/esbuild/internal/logger"
13+
"github.com/aperturerobotics/esbuild/pkg/cli"
1414
)
1515

1616
var helpText = func(colors logger.Colors) string {
@@ -28,7 +28,7 @@ var helpText = func(colors logger.Colors) string {
2828
` + colors.Underline + `https://esbuild.github.io/` + colors.Reset + `
2929
3030
` + colors.Bold + `Repository:` + colors.Reset + `
31-
` + colors.Underline + `https://github.com/evanw/esbuild` + colors.Reset + `
31+
` + colors.Underline + `https://github.com/aperturerobotics/esbuild` + colors.Reset + `
3232
3333
` + colors.Bold + `Simple options:` + colors.Reset + `
3434
--bundle Bundle all dependencies into the output files

cmd/esbuild/main_other.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"runtime/pprof"
1010
"runtime/trace"
1111

12-
"github.com/evanw/esbuild/internal/logger"
12+
"github.com/aperturerobotics/esbuild/internal/logger"
1313
)
1414

1515
func createTraceFile(osArgs []string, traceFile string) func() {

0 commit comments

Comments
 (0)