Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… into fix/issue-4699
  • Loading branch information
KazariEX committed Aug 26, 2024
2 parents bf9781a + 0e2db19 commit a1b4743
Show file tree
Hide file tree
Showing 437 changed files with 5,173 additions and 3,125 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pkg.pr.new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish Any Commit
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- run: pnpx pkg-pr-new publish './packages/*'
7 changes: 4 additions & 3 deletions extensions/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@
"description": "Traces the communication between VS Code and the language server."
},
"vue.server.hybridMode": {
"type": "boolean",
"type": ["boolean", "string"],
"default": "auto",
"enum": [
"auto",
Expand Down Expand Up @@ -548,14 +548,15 @@
"devDependencies": {
"@types/semver": "^7.5.3",
"@types/vscode": "^1.82.0",
"@volar/vscode": "~2.4.0-alpha.18",
"@volar/vscode": "~2.4.0",
"@vscode/vsce": "latest",
"@vue/language-core": "2.0.28",
"@vue/language-server": "2.0.28",
"@vue/typescript-plugin": "2.0.28",
"esbuild": "~0.21.0",
"esbuild-plugin-copy": "latest",
"esbuild-visualizer": "latest",
"semver": "^7.5.4"
"semver": "^7.5.4",
"vscode-tmlanguage-snapshot": "latest"
}
}
1 change: 0 additions & 1 deletion extensions/vscode/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ async function doActivate(context: vscode.ExtensionContext, createLc: CreateLang
lsp.activateAutoInsertion(selectors, client);
lsp.activateDocumentDropEdit(selectors, client);
lsp.activateWriteVirtualFiles('vue.action.writeVirtualFiles', client);
lsp.activateServerSys(client);

if (!enabledHybridMode) {
lsp.activateTsConfigStatusItem(selectors, 'vue.tsconfig', client);
Expand Down
Loading

0 comments on commit a1b4743

Please sign in to comment.