Skip to content

Commit

Permalink
fix: update re-export path
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Nov 3, 2023
1 parent 521edcf commit a03aae4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extensions/vscode/src/features/nameCasing.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as vscode from 'vscode';
import { quickPick } from '@volar/vscode/out/common';
import { quickPick } from '@volar/vscode/lib/common';
import { BaseLanguageClient, State } from 'vscode-languageclient';
import { AttrNameCasing, TagNameCasing, DetectNameCasingRequest, GetConvertAttrCasingEditsRequest, GetConvertTagCasingEditsRequest } from '@vue/language-server';
import { config } from '../config';
Expand Down
4 changes: 2 additions & 2 deletions packages/language-server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ export * from './protocol';
export * from './types';

// export protocol and types of parent package
export * from '@volar/language-server/out/protocol';
export * from '@volar/language-server/out/types';
export * from '@volar/language-server/protocol';
export * from '@volar/language-server/lib/types';

// only export types of depend packages
export * from '@vue/language-service/out/types';
2 changes: 1 addition & 1 deletion packages/language-service/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export enum AttrNameCasing {
}

// only export types of depend packages
export * from '@volar/language-service/out/types';
export * from '@volar/language-service/lib/types';
export * from '@vue/language-core/out/types';

0 comments on commit a03aae4

Please sign in to comment.