Gar
Gar
We'll need to bump engines here and make a breaking change.
- `npx [email protected] init` - `npx momentic@^1 init` These are different entries in the npx cache. The npx cache is indexed by the entire [package arg](https://github.com/npm/npm-package-arg). Within a given npx...
The entire argument as given on the cli is used. If multiple packages are given (i.e. with the `-p` flag) they are all combined and used. No cli commands are...
It does for me locally. We're back to the point where we can't reproduce this locally ```sh $ npx [email protected] init Need to install the following packages: [email protected] Ok to...
[Here](https://github.com/npm/cli/blob/523ad852cde08a29782cfa6d3643330fd228ad2d/workspaces/libnpmexec/lib/index.js#L180-L193) is where npm determines whether or not it can find the package locally installed. [Here](https://github.com/npm/cli/blob/523ad852cde08a29782cfa6d3643330fd228ad2d/workspaces/libnpmexec/lib/index.js#L204-L220) it looks in the global namespace. [Here](https://github.com/npm/cli/blob/523ad852cde08a29782cfa6d3643330fd228ad2d/workspaces/libnpmexec/lib/index.js#L243-L263) is where npm looks in the npx...
when using a range, npm is supposed to use whatever it finds, but ONLY if it's present in local or global. The npx cache inspection is supposed to look only...
> The italicized emphasis is mine in both quotes. Based on the documentation, I would expect npx foo@^1 to use any version it finds where the major version is 1....
@RedYetiDev updating npm in older node versions is something the nodejs folks do.
`npm run lintfix` should fix linting errors.
Oh shoot, sorry I forgot this was the cli repo. Yeah you gotta either be in the arborist directory or specify the workspace. I'll have to remember that when suggesting...