Skip to content

Commit

Permalink
refactor: move framework core out of repo (#2293)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Jan 12, 2023
1 parent 48a24c2 commit 3ffa361
Show file tree
Hide file tree
Showing 252 changed files with 455 additions and 18,802 deletions.
23 changes: 3 additions & 20 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Vue",
"name": "Launch Client",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
Expand All @@ -20,26 +20,9 @@
}
},
{
"name": "Launch Pug",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceRoot}/pug-language-tools/vscode-pug"
],
"outFiles": [
"${workspaceRoot}/*/*/out/**/*.js"
],
"preLaunchTask": {
"type": "npm",
"script": "watch"
}
},
{
"type": "extensionHost",
"request": "launch",
"name": "Launch TypeScript Vue Plugin",
"name": "Launch TypeScript Plugin",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
Expand All @@ -54,7 +37,7 @@
}
},
{
"name": "Launch Vue (Web)",
"name": "Launch Web Client",
"type": "pwa-extensionHost",
"debugWebWorkerHost": true,
"request": "launch",
Expand Down
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,19 @@
- fix(component-meta): cannot detection of slots in script-less SFC ([#2113](https://github.com/johnsoncodehk/volar/issues/2113))
- perf(component-meta): resolve schema on demand ([#2288](https://github.com/johnsoncodehk/volar/issues/2288))

### Our Gold Sponsors
### Platinum Sponsors

<table><tr>
<td align="center" valign="middle"><a href="https://vuejs.org/"><img src="https://raw.githubusercontent.com/johnsoncodehk/volar/master/.github/sponsors/vue.png" height="80" /></a></td>
<td align="center" valign="middle"><a href="https://volta.net/"><img src="https://raw.githubusercontent.com/johnsoncodehk/volar/master/.github/sponsors/volta.svg" height="60" /></a></td>
</tr></table>

### Our Silver Sponsors
### Gold Sponsors

<table><tr>
<td align="center" valign="middle"><a href="https://vuejs.org/"><img src="https://raw.githubusercontent.com/johnsoncodehk/volar/master/.github/sponsors/vue.png" height="80" /></a></td>
</tr></table>

### Silver Sponsors

<table><tr>
<td align="center" valign="middle"><a href="https://www.prefect.io/"><img src="https://raw.githubusercontent.com/johnsoncodehk/volar/master/.github/sponsors/prefect.svg" height="50" /></a></td>
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
- [vite-plugin-vue-component-preview](https://github.com/johnsoncodehk/vite-plugin-vue-component-preview) \
*Vite plugin for support Vue component preview view with `Vue Language Features`*

### Common
### Core

- [framework](https://github.com/volarjs/framework) \
*The core framework of language server.*
- [language-tools-starter](https://github.com/volarjs/language-tools-starter) \
*A template for creating embedded language tools based on Volar framework*
- [ecosystem-ci](https://github.com/volarjs/ecosystem-ci) \
Expand Down
4 changes: 0 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
"$schema": "https://raw.githubusercontent.com/lerna/lerna/main/core/lerna/schemas/lerna-schema.json",
"npmClient": "pnpm",
"packages": [
"examples/*",
"packages/*",
"plugins/*",
"pug-language-tools/*",
"vue-language-tools/*"
],
"version": "1.0.24"
Expand Down
9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,20 @@
"version:test": "lerna version --exact --force-publish --yes --sync-workspace-lock --no-push --no-git-tag-version",
"release": "npm run release:base && npm run release:vue && npm run release:pug && npm run release:typescript-vue-plugin",
"release:base": "lerna publish --exact --force-publish --yes --sync-workspace-lock",
"release:base-next": "lerna publish --exact --force-publish --yes --sync-workspace-lock --dist-tag next",
"release:vue": "cd ./vue-language-tools/vscode-vue && npm run release",
"release:pug": "cd ./pug-language-tools/vscode-pug && npm run release",
"release:typescript-vue-plugin": "cd ./vue-language-tools/vscode-typescript-vue-plugin && npm run release",
"test": "vitest run",
"docs:dev": "cd docs && npm run dev",
"docs:build": "cd docs && npm run build",
"docs:serve": "cd docs && npm run serve",
"chrome": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=./vue-language-tools/vscode-vue ../volar-starter"
},
"devDependencies": {
"@types/node": "latest",
"@volar/language-service": "1.0.24",
"typescript": "latest",
"vite": "latest",
"vitest": "0.25.8"
},
"optionalDependencies": {
"@lerna-lite/cli": "latest",
"@vscode/test-web": "latest",
"vue": "^3.2.45"
"@vscode/test-web": "latest"
}
}
21 changes: 0 additions & 21 deletions packages/language-core/LICENSE

This file was deleted.

19 changes: 0 additions & 19 deletions packages/language-core/package.json

This file was deleted.

4 changes: 0 additions & 4 deletions packages/language-core/src/index.ts

This file was deleted.

0 comments on commit 3ffa361

Please sign in to comment.