Skip to content

Commit 49467f7

Browse files
refactor: move plugins out of core repo (#1)
1 parent e856f3c commit 49467f7

File tree

93 files changed

+37
-5853
lines changed

Some content is hidden

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

93 files changed

+37
-5853
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: johnsoncodehk

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: testing
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ${{ matrix.os }}
8+
9+
strategy:
10+
matrix:
11+
node-version: [16.x]
12+
os: [macos-latest, windows-latest, ubuntu-latest]
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
# install node
18+
- name: Use Node.js ${{ matrix.node-version }}
19+
uses: actions/setup-node@v1
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
23+
# install pnpm
24+
- run: npm i -g pnpm
25+
- run: pnpm install --frozen-lockfile --no-optional
26+
- run: pnpm run build
27+
- run: pnpm run test

lerna.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"$schema": "https://raw.githubusercontent.com/lerna/lerna/main/core/lerna/schemas/lerna-schema.json",
33
"npmClient": "pnpm",
44
"packages": [
5-
"packages/*",
6-
"plugins/*"
5+
"packages/*"
76
],
87
"version": "1.0.24"
98
}

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"private": true,
33
"scripts": {
44
"build": "tsc -b tsconfig.build.json",
5-
"build-ci": "tsc -b tsconfig.build-ci.json",
65
"watch": "tsc -b tsconfig.build.json -w",
76
"prerelease": "npm run build && npm run test",
87
"version:test": "lerna version --exact --force-publish --yes --sync-workspace-lock --no-push --no-git-tag-version",

packages/language-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/johnsoncodehk/volar.git",
12+
"url": "https://github.com/volarjs/framework.git",
1313
"directory": "packages/language-core"
1414
},
1515
"dependencies": {

packages/language-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
],
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/johnsoncodehk/volar.git",
16+
"url": "https://github.com/volarjs/framework.git",
1717
"directory": "packages/language-server"
1818
},
1919
"dependencies": {

packages/language-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/johnsoncodehk/volar.git",
12+
"url": "https://github.com/volarjs/framework.git",
1313
"directory": "packages/language-service"
1414
},
1515
"dependencies": {

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/johnsoncodehk/volar.git",
12+
"url": "https://github.com/volarjs/framework.git",
1313
"directory": "packages/shared"
1414
},
1515
"dependencies": {

packages/source-map/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/johnsoncodehk/volar.git",
12+
"url": "https://github.com/volarjs/framework.git",
1313
"directory": "packages/source-map"
1414
},
1515
"dependencies": {

packages/typescript-faster/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/johnsoncodehk/volar.git",
12+
"url": "https://github.com/volarjs/framework.git",
1313
"directory": "packages/typescript-faster"
1414
},
1515
"devDependencies": {

0 commit comments

Comments
 (0)