We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How about a command line option similar to avas or tapes --require so you can have Babel, Coffescript or Typescript config files.
package.json
"scripts": { "start": "package-scripts --require babel-register" }
package-scripts.js
export default { scripts: { build: 'webpack' } }
command line
npm start build
The text was updated successfully, but these errors were encountered:
Yeah, that seems reasonable to me. I'm thinking that we could do something here:
if (program.require) { require(program.require) }
That should do it.
Would you be willing to makeapullrequest.com? Please include tests 👍
Sorry, something went wrong.
3ecdaf1
No branches or pull requests
How about a command line option similar to avas or tapes --require so you can have Babel, Coffescript or Typescript config files.
package.json
package-scripts.js
command line
The text was updated successfully, but these errors were encountered: