Skip to content

Commit 3d48718

Browse files
committed
chore: rename repo name
1 parent 7e153f8 commit 3d48718

File tree

23 files changed

+55
-55
lines changed

23 files changed

+55
-55
lines changed

.github/workflows/close-cant-reproduce-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
close-issues:
12-
if: github.repository == 'vuejs/core-vapor'
12+
if: github.repository == 'vuejs/vue-vapor'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: can't reproduce

.github/workflows/lock-closed-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
action:
12-
if: github.repository == 'vuejs/core-vapor'
12+
if: github.repository == 'vuejs/vue-vapor'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: dessant/lock-threads@v5

.github/workflows/size-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818

1919
jobs:
2020
upload:
21-
if: github.repository == 'vuejs/core-vapor'
21+
if: github.repository == 'vuejs/vue-vapor'
2222
runs-on: ubuntu-latest
2323

2424
steps:

.github/workflows/size-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
size-report:
1919
runs-on: ubuntu-latest
2020
if: >
21-
github.repository == 'vuejs/core-vapor' &&
21+
github.repository == 'vuejs/vue-vapor' &&
2222
github.event.workflow_run.event == 'pull_request' &&
2323
github.event.workflow_run.conclusion == 'success'
2424
steps:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: pnpm run test-dts
5656

5757
continuous-release:
58-
if: github.repository == 'vuejs/core-vapor'
58+
if: github.repository == 'vuejs/vue-vapor'
5959
runs-on: ubuntu-latest
6060
permissions:
6161
contents: read

packages-private/template-explorer/src/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const App = {
4444
h(
4545
'a',
4646
{
47-
href: `https://github.com/vuejs/core-vapor/tree/${__COMMIT__}`,
47+
href: `https://github.com/vuejs/vue-vapor/tree/${__COMMIT__}`,
4848
target: `_blank`,
4949
},
5050
`@${__COMMIT__}`,

packages/compiler-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"repository": {
3535
"type": "git",
36-
"url": "git+https://github.com/vuejs/core-vapor.git",
36+
"url": "git+https://github.com/vuejs/vue-vapor.git",
3737
"directory": "packages/compiler-core"
3838
},
3939
"keywords": [
@@ -42,9 +42,9 @@
4242
"author": "Evan You",
4343
"license": "MIT",
4444
"bugs": {
45-
"url": "https://github.com/vuejs/core-vapor/issues"
45+
"url": "https://github.com/vuejs/vue-vapor/issues"
4646
},
47-
"homepage": "https://github.com/vuejs/core-vapor/tree/main/packages/compiler-core#readme",
47+
"homepage": "https://github.com/vuejs/vue-vapor/tree/main/packages/compiler-core#readme",
4848
"dependencies": {
4949
"@babel/parser": "catalog:",
5050
"@vue/shared": "workspace:*",

packages/compiler-dom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"repository": {
4040
"type": "git",
41-
"url": "git+https://github.com/vuejs/core-vapor.git",
41+
"url": "git+https://github.com/vuejs/vue-vapor.git",
4242
"directory": "packages/compiler-dom"
4343
},
4444
"keywords": [
@@ -47,9 +47,9 @@
4747
"author": "Evan You",
4848
"license": "MIT",
4949
"bugs": {
50-
"url": "https://github.com/vuejs/core-vapor/issues"
50+
"url": "https://github.com/vuejs/vue-vapor/issues"
5151
},
52-
"homepage": "https://github.com/vuejs/core-vapor/tree/main/packages/compiler-dom#readme",
52+
"homepage": "https://github.com/vuejs/vue-vapor/tree/main/packages/compiler-dom#readme",
5353
"dependencies": {
5454
"@vue/shared": "workspace:*",
5555
"@vue/compiler-core": "workspace:*"

packages/compiler-sfc/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"repository": {
3131
"type": "git",
32-
"url": "git+https://github.com/vuejs/core-vapor.git",
32+
"url": "git+https://github.com/vuejs/vue-vapor.git",
3333
"directory": "packages/compiler-sfc"
3434
},
3535
"keywords": [
@@ -38,9 +38,9 @@
3838
"author": "Evan You",
3939
"license": "MIT",
4040
"bugs": {
41-
"url": "https://github.com/vuejs/core-vapor/issues"
41+
"url": "https://github.com/vuejs/vue-vapor/issues"
4242
},
43-
"homepage": "https://github.com/vuejs/core-vapor/tree/main/packages/compiler-sfc#readme",
43+
"homepage": "https://github.com/vuejs/vue-vapor/tree/main/packages/compiler-sfc#readme",
4444
"dependencies": {
4545
"@babel/parser": "catalog:",
4646
"@vue/compiler-core": "workspace:*",

packages/compiler-ssr/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"repository": {
1717
"type": "git",
18-
"url": "git+https://github.com/vuejs/core-vapor.git",
18+
"url": "git+https://github.com/vuejs/vue-vapor.git",
1919
"directory": "packages/compiler-ssr"
2020
},
2121
"keywords": [
@@ -24,9 +24,9 @@
2424
"author": "Evan You",
2525
"license": "MIT",
2626
"bugs": {
27-
"url": "https://github.com/vuejs/core-vapor/issues"
27+
"url": "https://github.com/vuejs/vue-vapor/issues"
2828
},
29-
"homepage": "https://github.com/vuejs/core-vapor/tree/main/packages/compiler-ssr#readme",
29+
"homepage": "https://github.com/vuejs/vue-vapor/tree/main/packages/compiler-ssr#readme",
3030
"dependencies": {
3131
"@vue/shared": "workspace:*",
3232
"@vue/compiler-dom": "workspace:*"

0 commit comments

Comments
 (0)