Skip to content

Commit 178df23

Browse files
committed
refactor: rename module path to github.com/s4wave/goscript
Repo transferred to the s4wave GitHub org. Update the module path and all Go imports, TypeScript tsconfig aliases, tooling config (renovate, goreleaser), docs, and examples to github.com/s4wave/goscript. Also carries in-flight gs runtime and compiler working-tree changes (gs/time, gs/slices, gs/sort, pkg/errors stack, compiler lowering and semantic model) and new test fixtures. Signed-off-by: Christian Stewart <christian@aperture.us>
1 parent a65522e commit 178df23

728 files changed

Lines changed: 1673 additions & 941 deletions

File tree

Some content is hidden

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

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"enabled": false
1616
},
1717
{
18-
"matchPackageNames": ["github.com/aperturerobotics/goscript"],
18+
"matchPackageNames": ["github.com/s4wave/goscript"],
1919
"enabled": false
2020
},
2121
{

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ release:
7878
7979
Go to TypeScript transpiler release.
8080
footer: |
81-
**Full Changelog**: https://github.com/aperturerobotics/goscript/compare/{{ .PreviousTag }}...{{ .Tag }}
81+
**Full Changelog**: https://github.com/s4wave/goscript/compare/{{ .PreviousTag }}...{{ .Tag }}
8282
8383
---
8484

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
</p>
1010

1111
<p>
12-
<a href="https://godoc.org/github.com/aperturerobotics/goscript">
13-
<img src="https://godoc.org/github.com/aperturerobotics/goscript?status.svg" alt="GoDoc" />
12+
<a href="https://godoc.org/github.com/s4wave/goscript">
13+
<img src="https://godoc.org/github.com/s4wave/goscript?status.svg" alt="GoDoc" />
1414
</a>
15-
<a href="https://goreportcard.com/report/github.com/aperturerobotics/goscript">
16-
<img src="https://goreportcard.com/badge/github.com/aperturerobotics/goscript" alt="Go Report Card" />
15+
<a href="https://goreportcard.com/report/github.com/s4wave/goscript">
16+
<img src="https://goreportcard.com/badge/github.com/s4wave/goscript" alt="Go Report Card" />
1717
</a>
18-
<a href="https://deepwiki.com/aperturerobotics/goscript">
18+
<a href="https://deepwiki.com/s4wave/goscript">
1919
<img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki" />
2020
</a>
2121
</p>
@@ -120,7 +120,7 @@ curl -fsSL https://bun.sh/install | bash
120120
Install the CLI:
121121

122122
```bash
123-
go install github.com/aperturerobotics/goscript/cmd/goscript@latest
123+
go install github.com/s4wave/goscript/cmd/goscript@latest
124124
```
125125

126126
Compile a Go package from a module directory:
@@ -231,7 +231,7 @@ package main
231231
import (
232232
"context"
233233

234-
"github.com/aperturerobotics/goscript/compiler"
234+
"github.com/s4wave/goscript/compiler"
235235
)
236236

237237
func main() {
@@ -265,7 +265,7 @@ WASM adapter package:
265265
```go
266266
package main
267267

268-
import "github.com/aperturerobotics/goscript/compiler/wasm"
268+
import "github.com/s4wave/goscript/compiler/wasm"
269269

270270
func main() {
271271
ts, err := wasm.CompileSource(`

cmd/go_js_wasm_exec/main.go

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

12-
"github.com/aperturerobotics/goscript/compiler/gotest"
12+
"github.com/s4wave/goscript/compiler/gotest"
1313
"github.com/pkg/errors"
1414
)
1515

cmd/go_js_wasm_exec/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77
"time"
88

9-
"github.com/aperturerobotics/goscript/compiler/gotest"
9+
"github.com/s4wave/goscript/compiler/gotest"
1010
)
1111

1212
func TestRequestFromGoToolArgsMapsSupportedFlags(t *testing.T) {

cmd/goscript-wasm/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"errors"
77
"syscall/js"
88

9-
"github.com/aperturerobotics/goscript/compiler"
10-
"github.com/aperturerobotics/goscript/compiler/wasm"
9+
"github.com/s4wave/goscript/compiler"
10+
"github.com/s4wave/goscript/compiler/wasm"
1111
)
1212

1313
func main() {

cmd/goscript/cmd-compile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"slices"
66

77
"github.com/aperturerobotics/cli"
8-
"github.com/aperturerobotics/goscript/compiler"
8+
"github.com/s4wave/goscript/compiler"
99
"github.com/pkg/errors"
1010
"github.com/sirupsen/logrus"
1111
)

cmd/goscript/cmd-test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"time"
1212

1313
"github.com/aperturerobotics/cli"
14-
"github.com/aperturerobotics/goscript/compiler/gotest"
14+
"github.com/s4wave/goscript/compiler/gotest"
1515
"github.com/pkg/errors"
1616
)
1717

cmd/goscript/deps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ package main
44

55
import (
66
// _ ensure we include the root package
7-
_ "github.com/aperturerobotics/goscript"
7+
_ "github.com/s4wave/goscript"
88
)

compiler/compliance_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"testing"
99

10-
"github.com/aperturerobotics/goscript/tests"
10+
"github.com/s4wave/goscript/tests"
1111
)
1212

1313
// TestCompliance runs the inherited GoScript compliance fixtures through the

0 commit comments

Comments
 (0)