Open lewchuk opened 6 years ago
Not sure between yarn.lock
and package-lock.json
how the dependencies are managed otherwise I'm happy to open a PR.
Basically if you move the dependencies to to dev-dependencies and run "npm install" & "yarn install" I think these files should be updated automatically.
It looks like inclusion of
babel-cli
and thebabel-preset-*
packages independencies
adds 45 MB (almost 50%) to the production dependencies of anyone including this library in their dependencies.Currently:
After moving
babel-*
to devDependencies:Moving the babel packages to dev-dependencies still lets anyone run the command line version of the code when only
yarn install --production
.