8000 feat: support nested plugins by so1ve · Pull Request #3530 · vuejs/language-tools · GitHub
[go: up one dir, main page]

Skip to content

feat: support nested plugins #3530

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

Merged
merged 4 commits into from
Sep 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update types.ts
  • Loading branch information
so1ve authored Sep 2, 2023
commit c2eececa5c6f9f00026d1f03c0e490f35a4426a3
2 changes: 1 addition & 1 deletion packages/vue-language-core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export type VueLanguagePlugin = (ctx: {
resolveEmbeddedFile?(fileName: string, sfc: Sfc, embeddedFile: VueEmbeddedFile): void;
};

export type VueLanguagePluginOption = VueLanguagePluginOption[] | VueLanguagePlugin | undefined
export type VueLanguagePluginOption = VueLanguagePluginOption[] | VueLanguagePlugin | undefined;

export interface SfcBlock {
name: string,
Expand Down
0