Problem description:
npx nps init -yml will take this:
"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.
I personally find this breaking the logic.
Suggested solution:
Allow using : as path resolver.
Problem description:
npx nps init -ymlwill 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.