-
Notifications
You must be signed in to change notification settings - Fork 94
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
regression with v4.5.1 but works fine in v4.5.0 #416
Comments
You meant v4.5.1? |
oops... yes sorry, I inversed the number 😆 I updated the issue with the correct numbers. thanks |
I'm seeing the same problem with 4.5.1. I tried to create a minimal-ish reproduction: https://github.com/skirtles-code/vite-plugin-dts-416-repro It's based on the default project created using The main factors seem to be:
|
locking volar to older version seems to work: "overrides": {
"@vue/language-core": "2.2.0"
} Might be an upstream regression. Many things regarding slots were changed recently there. |
bisecting shows this is the commit that broke - vuejs/language-tools@c4c0413 |
@brc-dd Thanks for your research. I will degrade the version of |
It seems that the volar's global types block is missing in generated dist/App.vue.d.ts. If we can inject it there somehow it will work. Output without bundling should be similar to when you run mkdist also is broken since newer releases. Also, this wasn't throwing without rollupTypes, but still the emitted types were broken. |
vuejs/language-tools#5239 seems to fix the upstream issue and the intermediate files have correct types now. But the api extractor output is still wrong: emitted code (by volar): declare var __VLS_1: {};
type __VLS_Slots = {} & {
default?: (props: typeof __VLS_1) => any;
};
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
}; bundled code: import { ComponentOptionsMixin } from 'vue';
import { ComponentProvideOptions } from 'vue';
import { DefineComponent } from 'vue';
import { PublicProps } from 'vue';
declare const __VLS_component: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
declare type __VLS_Slots = {} & {
default?: (props: typeof __VLS_1) => any;
};
declare type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};
export declare const App: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export { } Notice |
@brc-dd Seems will be correct if |
Describe the bug
Hello, I seem to get a regression bug with the new v4.5.1 in my project, I'm getting this error but only with the new version. If I try again the old version, by fixing the version to
4.5.0
in my package.json, then it works again without errors.Reproduction
https://github.com/ghiscoding/slickgrid-universal/actions/runs/13590117309/job/37997418809
Steps to reproduce
Note after cloning the repo, you have to modify the
frameworks/slickgrid-vue/package.json
to use latest version ofvite-plugin-dts
which is not currently the latest since it caused a regressionThe project is a monorepo, which might be a little too large but I hope that you can find the issue without requiring another project repro. Again it's really caused by the latest version only, 4.5.0 is ok but 4.5.1 is breaking
System Info
Validations
The text was updated successfully, but these errors were encountered: