Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-06-177.18.0v7.18.0release/v7.18.0Luke Karrys
2021-06-17libnpmexec@2.0.0Gar
* use new npxCache option
2021-06-17make-fetch-happen@9.0.3Gar
* fix: implement cache modes correctly
2021-06-16@npmcli/arborist@2.6.3Gar
* fix(inventory) handle old and british forms of 'license' * fix: removes [_complete] check to apply correct metadata * ensure node.fsParent is not set to node itself * fix extraneous deps on load-actual
2021-06-16npm-package-arg@8.1.5Gar
* fix: Make file: URLs (mostly) RFC 8909 compliant
2021-06-16libnpmversion@1.2.1Gar
* fix(retrieve-tag): pass match in a way git accepts
2021-06-11chore(libnpmdiff): added as workspaceRuy Adorno
- Setup ./packages/* as workspaces - Moved source from: https://github.com/npm/libnpmdiff to ./packages/libnpmdiff - Added CI target for workspaces Relates to: https://github.com/npm/statusboard/issues/362 PR-URL: https://github.com/npm/cli/pull/3386 Credit: @ruyadorno Close: #3386 Reviewed-by: @wraithgar
2021-06-107.17.0v7.17.0release/v7.17.0Gar
2021-06-10chore(package) Use a "files" listisaacs
We have a fairly small number of things that we wish to ship in our package, and they're all nicely arranged in a small number of folders. Instead of having a sprawling .npmignore file, we should just get with the recommended best practice, and use a "files" list in package.json. PR-URL: https://github.com/npm/cli/pull/3365 Credit: @isaacs Close: #3365 Reviewed-by: @wraithgar
2021-06-10fix(linting): add scripts, docs, smoke-testsGar
There is code in all of these places we control so it should be linted PR-URL: https://github.com/npm/cli/pull/3367 Credit: @wraithgar Close: #3367 Reviewed-by: @isaacs
2021-06-037.16.0v7.16.0release/v7.16.0nlf
2021-06-02make-fetch-happen@9.0.1/npm-registry-fetch@11.0.0Gar
make-fetch-happen@9.0.1 * breaking: complete refactor of caching. cache will no longer grow endlessly with duplicate requests. cache will be used in cases where it should have been but wasn't before. it will cache multiple content-types of the same url. it will dedupe existing caches of their unused entries. * fix: support url-encoded proxy authorization * fix: do not lazy-load proxy agents or agentkeepalive. fixes the intermittent failures to update npm on slower connections. npm-registry-fetch@11.0.0 * breaking: drop handling of deprecated warning headers * docs: fix header type for npm-command * docs: update registry param * feat: improved logging of cache status
2021-06-02npm-package-arg@8.1.4Gar
* fix: trim whitespace from fetchSpec * fix: handle file: when root directory begins with a special character
2021-06-01chore: manage docs as a workspaceRuy Adorno
- Add `./docs` as a workspace - Reinstate `./docs/package.json` to manage docs deps - Ignore `docs/content` markdown source folder from published tarball - Tweaked `make docs` to use `npm run` to run docs build step - Tweaked "bundle and gitignore" script to ignore symlinks in nm folder - Removed outdated `package.json` comment Relates to: https://github.com/npm/statusboard/issues/362 PR-URL: https://github.com/npm/cli/pull/3342 Credit: @ruyadorno Close: #3342 Reviewed-by: @wraithgar
2021-06-017.15.1v7.15.1release/v7.15.1Ruy Adorno
2021-06-01libnpmexec@1.2.0Ruy Adorno
2021-06-01eslint-plugin-import@2.23.4Ruy Adorno
2021-06-01@npmcli/arborist@2.6.1Ruy Adorno
2021-05-277.15.0v7.15.0release/v7.15.0Gar
2021-05-27cacache@15.2.0Gar
* feat: allow fully deleting indices * feat: add a validateEntry option to compact * chore: lint * chore: use standard npm style release scripts
2021-05-27cmark-gfm@0.8.5Gar
0.9.0 does not work in node 10.1 so our CI fails
2021-05-27cmark-gfm@0.9.0Gar
* devDependency used for building html docs
2021-05-26npm-audit-report@2.1.5Gar
* fix(exit-code): account for null auditLevel default (#46)
2021-05-207.14.0v7.14.0release/v7.14.0Ruy Adorno
2021-05-20npm-registry-client@10.1.2isaacs
Close: https://github.com/npm/cli/pull/3262 Fix: https://github.com/npm/cli/issues/3205
2021-05-20cacache@15.1.0isaacs
2021-05-20@npmcli/arborist@2.6.0Ruy Adorno
2021-05-14fix(docs): autogenerate config docs for commandsisaacs
Add a script and Makefile rule to build the "Configuration" section for all command documentation based on the command classes' `params` list. Also correct several minor problems in the documentation, and add `params` listings for commands that were lacking them, to match the existing documentation and/or behavior within the code. PR-URL: https://github.com/npm/cli/pull/3243 Credit: @isaacs Close: #3243 Reviewed-by: @wraithgar
2021-05-137.13.0v7.13.0release/v7.13.0Ruy Adorno
2021-05-13fix: lint all files in lib/ folderRuy Adorno
PR-URL: https://github.com/npm/cli/pull/3237 Credit: @ruyadorno Close: #3237 Reviewed-by: @wraithgar
2021-05-13libnpmfund@1.1.0Ruy Adorno
2021-05-13@npmcli/arborist@2.5.0Ruy Adorno
2021-05-117.12.1v7.12.1release/v7.12.1Gar
2021-05-11eslint@7.26.0Gar
2021-05-10@npmcli/arborist@2.4.4Gar
2021-05-10fix(packages): locale-agnostic string sortingisaacs
This adds the 'en' locale to all instances of String.localeCompare within the CLI codebase. Tests added for the cases where we're sorting arbitrary user-generated data. The tests rely on the fact that 'ch' sorts after 'd' in the `'sk'` locale, but ahead of `'d'` in the `'en'` locale. To ensure that this is the default behavior if no locale is specified, `LC_ALL=sk` is set in the test environment. Other instances of `localeCompare` sort data that the cli controls, so no tests were added. Re: https://github.com/npm/cli/issues/2829 PR-URL: https://github.com/npm/cli/pull/3203 Credit: @isaacs Close: #3203 Reviewed-by: @ruyadorno
2021-05-10@npmcli/arborist@2.4.3Gar
2021-05-10glob@7.1.7Gar
2021-05-10libnpmexec@1.1.1Gar
2021-05-07tap@15.0.9Gar
2021-05-067.12.0v7.12.0release/v7.12.0Gar
2021-05-06@npmcli/arborist@2.4.2Gar
* fix(add): save packages in the right place * fix(reify): do not clean up nodes with no parent * fix(audit): support alias specs & root package names
2021-05-06libnpmexec@1.1.0Gar
* feat: add walk up dir lookup to satisfy local bins
2021-05-06eslint-plugin-promise@5.1.0Gar
2021-05-06eslint@7.25.0Gar
2021-04-297.11.2v7.11.2release/v7.11.2nlf
2021-04-29@npmcli/arborist@2.4.1nlf
2021-04-29tap@15.0.6nlf
2021-04-29ls: do not warn on missing optional depsisaacs
There was code checking node[_type], but we didn't include that field on the object that is actually checked when we are looking for problems. Fix: #3137 PR-URL: https://github.com/npm/cli/pull/3140 Credit: @isaacs Close: #3140 Reviewed-by: @ruyadorno
2021-04-247.11.1v7.11.1isaacs