Open airtonix opened 2 years ago
we don't use npm
npm
I get unexpected npm run ... when:
npm run ...
"plopTemplates.plopCommand": "npx plop"
ends up running npm run npx plop ...
npm run npx plop ...
"plopTemplates.plopCommand": "node_modules/.bin/plop"
ends up running npm run node_modules/.bin/plop ...
npm run node_modules/.bin/plop ...
"plopTemplates.plopCommand": "pnpx plop"
ends up running npm run pnpx plop ...
npm run pnpx plop ...
"plopTemplates.plopCommand": "pnpm run plop"
ends up running npm run pnpm run plop ...
npm run pnpm run plop ...
when i just set
"plopTemplates.plopCommand": "plop"
it only ends up running plop ...
plop ...
which causes error because we don't globally install package cli tools, nor do we globally install nodejs
Agreed!
Great extension idea, but locks the user into using npm.
We use pnpm on all projects, and thus this cannot work.
pnpm
we don't use
npm
I get unexpected
npm run ...
when:ends up running
npm run npx plop ...
ends up running
npm run node_modules/.bin/plop ...
ends up running
npm run pnpx plop ...
ends up running
npm run pnpm run plop ...
when i just set
it only ends up running
plop ...
which causes error because we don't globally install package cli tools, nor do we globally install nodejs