vuepress / vuepress-community

:bulb: Community supported ecosystem for VuePress
https://vuepress-community.netlify.app
MIT License
81 stars 62 forks source link

[Bug Report] vuepress-types #45

Closed Mister-Hope closed 4 years ago

Mister-Hope commented 4 years ago
node_modules/vuepress-types/types/plugin.d.ts:1:17 - error TS2307: Cannot find module 'cac/types/CAC' or its corresponding type declarations.

1 import CAC from 'cac/types/CAC'

vuepress-types is depending on cac "^6.5.5", and using it in types/plugin.d.ts, but in 6.5.9, there is not any types folder.

Mister-Hope commented 4 years ago

I have opened an issue at CAC because it's not exporting CAC class.

egoist commented 4 years ago

You need to change it to import { CAC } from 'cac'

Mister-Hope commented 4 years ago

@meteorlxy Did you forget to release it?