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
Problem description: npx nps init -yml will take this:
npx nps init -yml
"infra:create": "node src/command/create.js", "infra:destroy": "node src/command/destroy.js",
And make this:
scripts: infra: create: node src/command/create.js destroy: node src/command/destroy.js
Now it's impossible to call it as previously: npx nps infra:create, but should be npx nps infra.create.
npx nps infra:create
npx nps infra.create
I personally find this breaking the logic.
Suggested solution: Allow using : as path resolver.
:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem description:
npx nps init -yml
will take this:And make this:
Now it's impossible to call it as previously:
npx nps infra:create
, but should benpx nps infra.create
.I personally find this breaking the logic.
Suggested solution:
Allow using
:
as path resolver.The text was updated successfully, but these errors were encountered: