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
npm
scripts: dev: |- echo "Something" echo "Something Else" dev:foo: |- echo "Yet more things" npm run dev dev:bar: >- echo "Yet more things" npm run dev
ends up being turned into:
scripts: dev: |- echo "Something" echo "Something Else" 'dev:foo': |- echo "Yet more things"; npm run dev 'dev:bar': echo "Yet more things"; npm run dev
I posit that package-yml should either just ignore the scripts section or look in a key config.package-yml for some rules about desired behaviour.
scripts
config.package-yml
scripts: ... "package-yml": transform: out: - "*" in: - "!scripts"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ends up being turned into:
I posit that package-yml should either just ignore the
scripts
section or look in a keyconfig.package-yml
for some rules about desired behaviour.The text was updated successfully, but these errors were encountered: