Skip to content

Commit c864676

Browse files
cursoragentntucker
andcommitted
pkg: Fix git+ssh repository URLs for Node 26 url.parse
SCP-style git+ssh://git@github.com:org/repo.git is not a valid WHATWG URL. Node 26's url.parse() throws ERR_INVALID_ARG_VALUE (Invalid port), which breaks npm-run-all (run-s) during yarn build:bundle. Co-authored-by: natmaster <natmaster@gmail.com>
1 parent ef4653f commit c864676

10 files changed

Lines changed: 10 additions & 10 deletions

File tree

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
"homepage": "https://dataclient.io",
128128
"repository": {
129129
"type": "git",
130-
"url": "git+ssh://git@github.com:reactive/data-client.git",
130+
"url": "git+ssh://git@github.com/reactive/data-client.git",
131131
"directory": "packages/core"
132132
},
133133
"bugs": {

packages/endpoint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
"license": "Apache-2.0",
128128
"repository": {
129129
"type": "git",
130-
"url": "git+ssh://git@github.com:reactive/data-client.git",
130+
"url": "git+ssh://git@github.com/reactive/data-client.git",
131131
"directory": "packages/endpoint"
132132
},
133133
"bugs": {

packages/graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://dataclient.io/docs/graphql",
66
"repository": {
77
"type": "git",
8-
"url": "git+ssh://git@github.com:reactive/data-client.git",
8+
"url": "git+ssh://git@github.com/reactive/data-client.git",
99
"directory": "packages/graphql"
1010
},
1111
"bugs": {

packages/img/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://dataclient.io/docs/guides/img-media#just-images",
66
"repository": {
77
"type": "git",
8-
"url": "git+ssh://git@github.com:reactive/data-client.git",
8+
"url": "git+ssh://git@github.com/reactive/data-client.git",
99
"directory": "packages/img"
1010
},
1111
"bugs": {

packages/normalizr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"license": "MIT",
117117
"repository": {
118118
"type": "git",
119-
"url": "git+ssh://git@github.com:reactive/data-client.git",
119+
"url": "git+ssh://git@github.com/reactive/data-client.git",
120120
"directory": "packages/normalizr"
121121
},
122122
"bugs": {

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://dataclient.io",
66
"repository": {
77
"type": "git",
8-
"url": "git+ssh://git@github.com:reactive/data-client.git",
8+
"url": "git+ssh://git@github.com/reactive/data-client.git",
99
"directory": "packages/react"
1010
},
1111
"bugs": {

packages/rest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://dataclient.io/rest",
66
"repository": {
77
"type": "git",
8-
"url": "git+ssh://git@github.com:reactive/data-client.git",
8+
"url": "git+ssh://git@github.com/reactive/data-client.git",
99
"directory": "packages/rest"
1010
},
1111
"bugs": {

packages/test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://dataclient.io/docs/guides/storybook",
66
"repository": {
77
"type": "git",
8-
"url": "git+ssh://git@github.com:reactive/data-client.git",
8+
"url": "git+ssh://git@github.com/reactive/data-client.git",
99
"directory": "packages/test"
1010
},
1111
"bugs": {

packages/use-enhanced-reducer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://github.com/reactive/data-client/tree/master/packages/use-enhanced-reducer#readme",
66
"repository": {
77
"type": "git",
8-
"url": "git+ssh://git@github.com:reactive/data-client.git",
8+
"url": "git+ssh://git@github.com/reactive/data-client.git",
99
"directory": "packages/use-enhanced-reducer"
1010
},
1111
"bugs": {

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://dataclient.io",
66
"repository": {
77
"type": "git",
8-
"url": "git+ssh://git@github.com:reactive/data-client.git",
8+
"url": "git+ssh://git@github.com/reactive/data-client.git",
99
"directory": "packages/vue"
1010
},
1111
"bugs": {

0 commit comments

Comments
 (0)