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
path: root/docs
AgeCommit message (Collapse)Author
2022-04-07chore: @npmcli/template-oss@3.3.2 (#4694)Gar
2022-04-07chore: @npmcli/template-oss@3.3.1 (#4692)Gar
2022-04-07chore: tap@16.0.1Gar
2022-04-07deps: @npmcli/promise-spawn@3.0.0Gar
2022-04-06chore(docs): move scripts and refactorLuke Karrys
All docs related scripts are now located in the docs workspace
2022-04-05fix(run-script): don't cascade if-present config (#4678)Ruy Adorno
Do not pass the `if-present` env config value to spawned processes. Fixes: https://github.com/npm/cli/issues/3352 Close: https://github.com/npm/cli/pull/3589
2022-04-04fix: do not export npm_config_include_workspace_rootGar
2022-04-04fix: remove dedupe --saveGar
* Removed dedupe --save documentation and attempted implementation. * Remove some unneeded otplease mocks from test `npm dedupe --save` didn't work in a easy to understand way. It would only update a top level dependency that was duplicated in the tree. Found this out rewriting the dedupe tests to be real. This is not very intuitive and it's best if folks use update or install for saving to package.json.
2022-04-04docs: fix npm-uninstall typo (#4670)JSKitty
Futher --> Further
2022-04-01fix: update readme badges (#4658)Luke Karrys
2022-04-01docs(ci): add note that configuration must be consistent between install and ↵nlf
ci (#4666) related to #4664
2022-03-30docs: recommend prepare over prepublish (#4641)Boris Verkhovskiy
2022-03-30deps: @npmcli/template-oss@3.2.2 (#4639)Luke Karrys
- add some basic tests for docs - make dockhand script work on windows - cleanup main CI to match template-oss - add a git status check for cli ci tests - use resetdeps for ci steps
2022-03-30deps: @npmcli/template-oss@3.2.1Luke Karrys
- `no-shadow` was disabled for the cli and arborist due to the amount of changes required. These should be fixed later. - Manually updated linting in the cli root to match closer to what template-oss does - Included docs to be managed with template-oss. This required adding an empty test for now, with the plan to add real tests later.
2022-03-28fix: consolidate command alias codeGar
2022-03-24feat: add logs-dir config to set custom logging locationLuke Karrys
This also allows logs-max to be set to 0 to disable log file writing. Closes #4466 Closes #4206
2022-03-24feat(version): reify on workspace version change (#4588)Ruy Adorno
Adds a minimalistic reify step that updates the installed tree after a version change within one of the configured workspaces when using any of the workspaces config options. It's also possible to use the `--save` config option in order to auto update semver ranges of dependencies declarations accross dependent `package.json` files. Fixes: https://github.com/npm/cli/issues/3403 Relates to: https://github.com/npm/rfcs/issues/556 Relates to: https://github.com/npm/cli/issues/3757 Relates to: https://github.com/npm/cli/issues/4193
2022-03-17docs: fix unpublish docs to auto generate usage (#4584)Gar
Also add explanation of what `--force` does for unpublish
2022-03-17docs: explain that git-tag-version=false does not commit (#4574)Gar
2022-03-17docs: explain that linked deps need `npm install` ran in them (#4575)Gar
2022-03-17docs: add isntall alias to install command (#4582)Gar
2022-03-17docs: add foreground-scripts and ignore-scripts to commandsGar
I think this gets them all
2022-03-10docs: fix typo in configuring-npm/package-json.md (#4524)David Chin
2022-03-03fix: set proper workspace repo urls in package.json (#4476)Jordan Harband
2022-02-24docs: auto-generate npm usage for each command (#4450)Wassim Chegham
Closes #4189 * docs: auto-generate synopsis sections * feat: improve usage auto-generation' * chore: auto-generate npm usage for each command * docs: print default usage when usage is missing * docs: add special case for npx * fix: remove optional chaining
2022-02-22docs: explain $INIT_CWD on using scripts page (#4436)Gar
2022-02-22docs: clarify npm init @latest behavior (#4435)Gar
Closes: https://github.com/npm/cli/issues/3821
2022-02-17Merge branch 'latest' into release-nextGar
2022-02-17docs: update docs for npm install <folder> (#4428)Wassim Chegham
npm install <folder> doesn't install dependencies if <folder> is outside of root project. Fixes #3358
2022-02-16docs: update workspaces guide for consistency (#4426)Tierney Cyren
Signed-off-by: Tierney Cyren <hello@bnb.im>
2022-02-16docs: update documentation for ping (#4423)F. Hinkelmann
Fixes https://github.com/npm/cli/issues/4136
2022-02-08docs: add --save-bundle to --save usage outputGar
2022-02-08docs: add cross-references between npx and npm execDelapouite
2022-02-03chore(docs): remove package-lock.json fileRuy Adorno
Fixes: https://github.com/npm/cli/issues/4344
2022-02-03fix(ci): should not use package-lock configRuy Adorno
`npm ci` should never be affected by the `package-lock` config. Fixes: https://github.com/npm/cli/issues/4185
2022-02-03docs: bundleDependencies can be a boolean. (#4361)Quentin Barbe
This has been possible since this commit in `npm-bundled`: https://github.com/npm/npm-bundled/commit/101a94db5953e508b57de0e7b887964691d2d326
2022-01-20fix: npm update --save (#4223)Ruy Adorno
Previously `npm update` was not respecting the `save` option, it would be impossible for users to use `npm update` and automatically update their `package.json` files. This fixes it by adding extra steps on `Arborist.reify._saveIdealTree` to read direct dependencies of any `package.json` and update them as needed when reifying using the `update` and `save` options. - Uses config.isDefault to set a different value for the `save` config for both the update and dedupe commands - Tweaks arborist to make sure saveIdealTree preserves the behavior of skipping writing to package-lock.json on save=false for install while still writing the lockfile for `npm update` with its new default value of save=false. - Updated and added some new tests on arborist to cover for these tweaks - Added `npm update --save` smoke test on cli Fixes: https://github.com/npm/cli/issues/708 Fixes: https://github.com/npm/cli/issues/2704 Relates to: https://github.com/npm/feedback/discussions/270
2022-01-11fix: added arborist action and updated template-oss (#4215)Nathan Fritz
- updated template-oss and manually added arborist ci - updated arborist ci to include path - fixed workspace reference and upgraded template-oss - upgraded template-oss properly
2021-12-09chore(docs): document overridesnlf
PR-URL: https://github.com/npm/cli/pull/4092 Credit: @nlf Close: #4092 Reviewed-by: @wraithgar
2021-12-03docs: update description about where/when debug log is writtenLuke Karrys
PR-URL: https://github.com/npm/cli/pull/4114 Credit: @lukekarrys Close: #4114 Reviewed-by: @wraithgar
2021-12-03docs: add logging docsDarcy Clarke
PR-URL: https://github.com/npm/cli/pull/4113 Credit: @darcyclarke Close: #4113 Reviewed-by: @lukekarrys
2021-11-24docs(workspaces): Fix typoyotamselementor
PR-URL: https://github.com/npm/cli/pull/4089 Credit: @yotamselementor Close: #4089 Reviewed-by: @wraithgar
2021-11-22docs: Fix typoJan T. Sott
PR-URL: https://github.com/npm/cli/pull/4081 Credit: @idleberg Close: #4081 Reviewed-by: @wraithgar
2021-11-22docs: fix typo in `save-peer` descriptionTakuya Fukuju
PR-URL: https://github.com/npm/cli/pull/4072 Credit: @chalkygames123 Close: #4072 Reviewed-by: @wraithgar
2021-11-18chore(docs): cmark-gfm@0.9.0Gar
2021-11-18chore(docs): jsdom@8.1.0Gar
PR-URL: https://github.com/npm/cli/pull/4048 Credit: @wraithgar Close: #4048 Reviewed-by: @fritzy
2021-11-18separate github actions for workspacesNathan Fritz
PR-URL: https://github.com/npm/cli/pull/4050 Credit: @fritzy Close: #4050 Reviewed-by: @wraithgar PR-URL: https://github.com/npm/cli/pull/4050 Credit: @fritzy Close: #4050 Reviewed-by: @wraithgar
2021-11-17docs: fix typo in npm install docsMansur Ali Koroglu
PR-URL: https://github.com/npm/cli/pull/4053 Credit: @MansurAliKoroglu Close: #4053 Reviewed-by: @wraithgar
2021-11-16docs: turn off smart quotes, update doctype and charsetEdward Thomson
* When rendering HTML documentation, don't use smart quotes because they're icky and hard to copy/paste. * Add a <!DOCTYPE html> and a <meta charset="utf-8"> to be good HTML citizens. PR-URL: https://github.com/npm/cli/pull/4046 Credit: @ethomson Close: #4046 Reviewed-by: @wraithgar
2021-11-08docs: By default npm ignores .gitignore and .npmignoreDaniel Cobo
PR-URL: https://github.com/npm/cli/pull/4009 Credit: @danielcobo Close: #4009 Reviewed-by: @wraithgar