I am using this to only install the core dependencies of a package on a vps but still it installs all the dependencies
bun install @fnlb-project/fnbr@latest --omit=dev --omit=peer --omit=optional
These are the dependencies listed on the package's website ( in image)
Also I am so sure that it's installing all the dependencies as if I use
bun add @fnlb-project/fnbr@latest
OR
bun add @fnlb-project/fnbr@latest --omit=dev --omit=peer --omit=optional
The number of dependencies installed and resolved remains same
Sorry if my question is dumb I am new in coding soo 😅
#Help :(
1 messages · Page 1 of 1 (latest)
dev dependencies are only installed for the local/project package (not ones on npm that u install)
Aah I didn't get that 🤦
I am not installing anything with npm