Skip to content

Commit

Permalink
Rename rogchap to sundeck coordinates to allow usage. (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacques-n committed Jan 13, 2023
1 parent 2601ee6 commit 03703b2
Show file tree
Hide file tree
Showing 25 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .fossa.yml
Expand Up @@ -9,5 +9,5 @@ analyze:
modules:
- name: v8go
type: go
target: rogchap.com/v8go
target: github.com/sundeck-io/v8go
path: .
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
run: echo "::set-output name=tag::${GITHUB_REF/refs\/tags\//}"
- name: Get changelog url
id: changelog
run: echo "${{ steps.version.outputs.tag }}---$(date +'%Y-%m-%d')" | sed -e 's/\.//g' | awk '{print "::set-output name=url::https://github.com/rogchap/v8go/blob/master/CHANGELOG.md#" $1}'
run: echo "${{ steps.version.outputs.tag }}---$(date +'%Y-%m-%d')" | sed -e 's/\.//g' | awk '{print "::set-output name=url::https://github.com/sundeck-io/v8go/blob/master/CHANGELOG.md#" $1}'
- name: Create release
uses: actions/create-release@v1
env:
Expand Down
8 changes: 4 additions & 4 deletions README.md
@@ -1,8 +1,8 @@
# Execute JavaScript from Go

<a href="https://github.com/rogchap/v8go/releases"><img src="https://img.shields.io/github/v/release/rogchap/v8go" alt="Github release"></a>
[![Go Report Card](https://goreportcard.com/badge/rogchap.com/v8go)](https://goreportcard.com/report/rogchap.com/v8go)
[![Go Reference](https://pkg.go.dev/badge/rogchap.com/v8go.svg)](https://pkg.go.dev/rogchap.com/v8go)
[![Go Report Card](https://goreportcard.com/badge/github.com/sundeck-io/v8go)](https://goreportcard.com/report/github.com/sundeck-io/v8go)
[![Go Reference](https://pkg.go.dev/badge/github.com/sundeck-io/v8go.svg)](https://pkg.go.dev/github.com/sundeck-io/v8go)
[![CI](https://github.com/rogchap/v8go/workflows/CI/badge.svg)](https://github.com/rogchap/v8go/actions?query=workflow%3ACI)
![V8 Build](https://github.com/rogchap/v8go/workflows/V8%20Build/badge.svg)
[![codecov](https://codecov.io/gh/rogchap/v8go/branch/master/graph/badge.svg?token=VHZwzGm3dV)](https://codecov.io/gh/rogchap/v8go)
Expand All @@ -14,7 +14,7 @@
## Usage

```go
import v8 "rogchap.com/v8go"
import v8 "github.com/sundeck-io/v8go"
```

### Running a script
Expand Down Expand Up @@ -183,7 +183,7 @@ func printTree(nest string, node *v8.CPUProfileNode) {

## Documentation

Go Reference & more examples: https://pkg.go.dev/rogchap.com/v8go
Go Reference & more examples: https://pkg.go.dev/github.com/sundeck-io/v8go

### Support

Expand Down
10 changes: 5 additions & 5 deletions cgo.go
Expand Up @@ -18,9 +18,9 @@ import "C"
// contain V8 libraries and headers which otherwise would be ignored.
// DO NOT REMOVE
import (
_ "rogchap.com/v8go/deps/darwin_arm64"
_ "rogchap.com/v8go/deps/darwin_x86_64"
_ "rogchap.com/v8go/deps/include"
_ "rogchap.com/v8go/deps/linux_arm64"
_ "rogchap.com/v8go/deps/linux_x86_64"
_ "github.com/sundeck-io/v8go/deps/darwin_arm64"
_ "github.com/sundeck-io/v8go/deps/darwin_x86_64"
_ "github.com/sundeck-io/v8go/deps/include"
_ "github.com/sundeck-io/v8go/deps/linux_arm64"
_ "github.com/sundeck-io/v8go/deps/linux_x86_64"
)
2 changes: 1 addition & 1 deletion context_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestContextExec(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cpuprofile_test.go
Expand Up @@ -7,7 +7,7 @@ package v8go_test
import (
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestCPUProfile(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cpuprofilenode_test.go
Expand Up @@ -7,7 +7,7 @@ package v8go_test
import (
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestCPUProfileNode(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cpuprofiler_test.go
Expand Up @@ -7,7 +7,7 @@ package v8go_test
import (
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestCPUProfiler_Dispose(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions deps/include/vendor.go
Expand Up @@ -3,6 +3,6 @@
package include

import (
_ "rogchap.com/v8go/deps/include/cppgc"
_ "rogchap.com/v8go/deps/include/libplatform"
_ "github.com/sundeck-io/v8go/deps/include/cppgc"
_ "github.com/sundeck-io/v8go/deps/include/libplatform"
)
2 changes: 1 addition & 1 deletion deps/upgrade_v8.py
Expand Up @@ -41,7 +41,7 @@ def get_directories_names(path):
return sorted(flist)

def package_name(package, index, total):
name = f'_ "rogchap.com/v8go/deps/include/{package}"'
name = f'_ "github.com/sundeck-io/v8go/deps/include/{package}"'
if (index + 1 == total):
return name
else:
Expand Down
2 changes: 1 addition & 1 deletion errors_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestJSErrorFormat(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion function_template_fetch_test.go
Expand Up @@ -16,7 +16,7 @@ import (
"net/http"
"strings"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func ExampleFunctionTemplate_fetch() {
Expand Down
2 changes: 1 addition & 1 deletion function_template_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestFunctionTemplate(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion function_test.go
Expand Up @@ -7,7 +7,7 @@ package v8go_test
import (
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestFunctionCall(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
@@ -1,3 +1,3 @@
module rogchap.com/v8go
module github.com/sundeck-io/v8go

go 1.16
go 1.18
2 changes: 1 addition & 1 deletion intl_test.go
Expand Up @@ -7,7 +7,7 @@ package v8go_test
import (
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestIntlSupport(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion isolate_test.go
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestIsolateTerminateExecution(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion json_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestJSONParse(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion leak_test.go
Expand Up @@ -11,7 +11,7 @@ import (
"os"
"testing"

"rogchap.com/v8go"
"github.com/sundeck-io/v8go"
)

func TestMain(m *testing.M) {
Expand Down
2 changes: 1 addition & 1 deletion object_template_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"runtime"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestObjectTemplate(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion object_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestObjectMethodCall(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion promise_test.go
Expand Up @@ -7,7 +7,7 @@ package v8go_test
import (
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestPromiseFulfilled(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion unbound_script_test.go
Expand Up @@ -7,7 +7,7 @@ package v8go_test
import (
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestUnboundScriptRun_OnlyInTheSameIsolate(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion v8go_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"regexp"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestVersion(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion value_test.go
Expand Up @@ -13,7 +13,7 @@ import (
"runtime"
"testing"

v8 "rogchap.com/v8go"
v8 "github.com/sundeck-io/v8go"
)

func TestValueNewBaseCases(t *testing.T) {
Expand Down

0 comments on commit 03703b2

Please sign in to comment.