-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Update to webpack4 and simplify build tooling #3100
Conversation
* compiled common js files to ./lib. | ||
*/ | ||
const buildLib = step('commonjs modules', libRoot, () => | ||
execa.shell(`npx babel ${srcRoot} --out-dir ${libRoot} --env-name "lib"`, { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why npx instead of just using a dev dep?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is a dev dep, but this saves me from having to do node_modules/.bin/node
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fair enough i guess
slowly trimming it all down to nothing