Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Apr 22, 2024
1 parent e6ba91e commit d3dffd1
Show file tree
Hide file tree
Showing 4 changed files with 416 additions and 467 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
- `jenkey2011.string-highlight`
- **language-core:** improve maintainability of codegen (#4276)
- Deprecated `vueCompilerOptions.nativeTags`, now respects the `nodeType` property of template AST node.
- Dynamic component types without v-bind:is are no longer supported.
- Dynamic component types without `v-bind:is` are no longer supported.

## 2.0.13 (2024/4/12)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"prerelease": "npm run build && npm run test",
"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",
"release:base": "lerna publish --exact --force-publish --yes --sync-workspace-lock --no-push",
"release:base": "lerna publish --exact --force-publish --yes --sync-workspace-lock",
"release:vue": "cd ./extensions/vscode && npm run release",
"release:next": "npm run release:next-base && npm run release:next-vue",
"release:next-base": "npm run release:base -- --dist-tag next",
Expand Down
2 changes: 1 addition & 1 deletion packages/language-service/lib/plugins/vue-document-drop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function create(
name: 'vue-document-drop',
create(context): LanguageServicePluginInstance {

let casing: TagNameCasing = TagNameCasing.Pascal; // TODO
let casing = TagNameCasing.Pascal as TagNameCasing; // TODO

const tsPluginClient = getTsPluginClient?.(context);

Expand Down
Loading

0 comments on commit d3dffd1

Please sign in to comment.