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
First, thanks for the great library.
On the page https://formatjs.io/docs/tooling/cli/#compilation, I read:
npm run compile --help
Running that command doesn't work. I get:
$ npm run compile --help No results for "run" "compile"
That's because -- is needed when passing options as part of executing a NPM script: This works:
$ npm run compile -- --help
The same issue happens here too:
npm run extract --help
The text was updated successfully, but these errors were encountered:
Add -- in NPM scripts before the --help option
--help
8092408
Fixes formatjs#2
all the code is actually at formatjs/formatjs repo so you'd have to submit a PR there
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
First, thanks for the great library.
The issue
On the page https://formatjs.io/docs/tooling/cli/#compilation, I read:
Running that command doesn't work. I get:
That's because
--
is needed when passing options as part of executing a NPM script:This works:
The same issue happens here too:
The text was updated successfully, but these errors were encountered: