-
-
Notifications
You must be signed in to change notification settings - Fork 112
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
Reduce v4 dependency tree #172
Comments
Thank you for raising! This was a mistake on my end. Fixing now |
@avaly please test against 4.0.2 and let me know if this has solved the problem for you 😊 |
While Full list of packages added
PS: Please re-open this issue until these are also addressed. |
Should be fixed in 4.0.3. PS: Please make a new issue should anything else arise. |
We're using
node-vibrant
in a node.js project. During the upgrade from v3 to v4 we saw a huge number of dependencies added to our lockfile (2500 lines added inyarn.lock
). Upon inspecting why there are so many packages added, we identified the source of those being@vibrant/generator-default
which has a dependency onvite
.vite
brings in a ton of packages:esbuild
,rollup
,less
,sass
, etc. Those packages are suited for a development front-end tool. We're usingvibrant
in a node.js environment. All these packages (since they're production dependencies), are added in our Docker image thus increasing its size unnecessarily.Please reduce the dependency tree or provide a slim
node
only variant of the package.The text was updated successfully, but these errors were encountered: