- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 242
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
Configuration Clashing #113
Comments
Thank you for the report. Hmm, I could not reproduce it. ~\dev\sandbox> npm run a
> talk@ a C:\Users\t-nagashima.MSS\dev\sandbox
> npm-run-all a:*
> talk@ a:a C:\Users\t-nagashima.MSS\dev\sandbox
> echo a
a
> talk@ a:b C:\Users\t-nagashima.MSS\dev\sandbox
> echo b
b
~\dev\sandbox> yarn a
yarn a v0.24.5
$ npm-run-all a:*
yarn run v0.24.5
$ echo a
a
Done in 0.08s.
yarn run v0.24.5
$ echo b
b
Done in 0.08s.
Done in 1.22s. |
Oh, I can reproduce it with the latest |
|
Yeah, we're using yarn with our project, |
I'm having the same issue with {
"name": "npmrunall",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"config": {
"msg_1": "message_c_1",
"msg_2": "message_c_2"
},
"scripts": {
"test0": "run-p test1 test2",
"test1": "echo $npm_package_config_msg_1",
"test2": "echo $npm_package_config_msg_2"
},
"devDependencies": {
"npm-run-all": "^4.1.1"
}
}
|
I have published |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have a package.json:
(truncated for simplicity)
And everytime I try to run
yarn a
, I get the following:I suspect that the configuration generated by the https://github.com/bahmutov/pre-git package is interfereing with the configuration parsing that's done here:
npm-run-all/lib/index.js
Lines 101 to 124 in 7e83545
Possibly a way around this?
The text was updated successfully, but these errors were encountered: