Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(language-core): inlay hints for <component :is> and <slot :name> #4661

Merged
merged 12 commits into from
Oct 23, 2024
Merged
  •  
  •  
  •  
Prev Previous commit
Next Next commit
… into fix/issue-4294
  • Loading branch information
KazariEX committed Aug 26, 2024
commit e27e67f9cf17dc90aade9e6df3e2b09d7b298177
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",
"vsce": "latest"
"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
You are viewing a condensed version of this merge commit. You can view the full changes here.