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
2020-05-01docs: updated node-gyp linksRuy Adorno
2020-05-01chore(docs): Fixed example typo & code style in npm-scripts.mdNaix Geng
PR-URL: https://github.com/npm/cli/pull/1089 Credit: @NNNaix Close: #1089 Reviewed-by: @ruyadorno
2020-03-19docs: cleanupRuy Adorno
- Removed rogue .DS_Store file PR-URL: https://github.com/npm/cli/pull/1034 Credit: @ Close: #1034 Reviewed-by: @darcyclarke
2020-03-18docs(teams): updated team docs to reflect new MFA workflow for npm team apiBernard Kitchens
PR-URL: https://github.com/npm/cli/pull/1020 Credit: @ Close: #1020 Reviewed-by: @darcyclarke
2020-03-18docs:correction to npm update -g behaviourJohn Kennedy
PR-URL: https://github.com/npm/cli/pull/755 Credit: @ Close: #755 Reviewed-by: @darcyclarke
2020-03-18Fixed links to cli commandssimon_s
PR-URL: https://github.com/npm/cli/pull/1013 Credit: @ Close: #1013 Reviewed-by: @darcyclarke
2020-03-03chore(docs): update unpublish docs with both commands, removing policy info ↵Amal Hussein
from cli docs, and added reference to unpublish policy docs Co-Authored-By: Michael 'afrolion' Perrotte <mike@npmjs.com> PR-URL: https://github.com/npm/cli/pull/730 Credit: @nomadtechie Close: #730 Reviewed-by: @darcyclarke
2020-02-25fund: support multiple funding sourcesJordan Harband
See https://github.com/npm/rfcs/pull/68 PR-URL: https://github.com/npm/cli/pull/731 Credit: @ Close: #731 Reviewed-by: @Darcy Clarke
2020-02-25Update npm-publish.mdVitaliy Markitanov
Fixed wrong links in See also section PR-URL: https://github.com/npm/cli/pull/939 Credit: @ Close: #939 Reviewed-by: @Darcy Clarke
2020-02-25updated script to say postinstall to show intentionAjay Narain Mathur
PR-URL: https://github.com/npm/cli/pull/936 Credit: @ Close: #936 Reviewed-by: @Darcy Clarke
2020-02-25Correct typoDave Nicolson
PR-URL: https://github.com/npm/cli/pull/787 Credit: @ Close: #787 Reviewed-by: @Darcy Clarke
2020-02-25docs: updated scripts docs in using-npm sectionMichael Perrotte
- A continuation of @seanhealy's work PR-URL: https://github.com/npm/cli/pull/729 Credit: @ Close: #729 Reviewed-by: @Darcy Clarke
2020-02-25First take on breaking out the lifecycle hooks.Sean Healy
2020-01-23docs: mention --no-optional in package-jsonCaleb Sacks
PR-URL: https://github.com/npm/cli/pull/705 Credit: @clabe45 Close: #705 Reviewed-by: @mikemimik
2020-01-09npm-link: clarify usage of global prefixJan-Philip Gehrcke
In wondered why npm link doesn't "install to" `npm prefix`. I looked up the documentation for `npm prefix` and found the important distinction between the local prefix, and the global prefix. This attempts to clarity that `npm link` always uses specifically the global prefix. PR-URL: https://github.com/npm/cli/pull/532 Credit: @jgehrcke Close: #532 Reviewed-by: @ruyadorno
2020-01-07docs: update gatsby dependenciesFelix Yan
PR-URL: https://github.com/npm/cli/pull/627 Credit: @felixonmars Close: #627 Reviewed-by: @ruyadorno
2019-11-18docs: package aliasesclaudiahdz
PR-URL: https://github.com/npm/cli/pull/485 Credit: @claudiahdz Close: #485 Reviewed-by: @claudiahdz
2019-11-14docs: remove coding-style from docsclaudiahdz
PR-URL: https://github.com/npm/cli/pull/453 Credit: @claudiahdz Close: #453 Reviewed-by: @claudiahdz
2019-11-14chore(docs): fix case-sensitive filenamesclaudiahdz
2019-11-14chore(docs): Add how to install all deps when NODE_ENV=productionMehdi Hasan Khan
PR-URL: https://github.com/npm/cli/pull/232 Credit: @mugli Close: #232 Reviewed-by: @claudiahdz
2019-11-14chore(docs): Added depreciation note in npm-scripts.mdMenelaos Kotsollaris
PR-URL: https://github.com/npm/cli/pull/268 Credit: @mkotsollaris Close: #268 Reviewed-by: @claudiahdz
2019-11-14chore(docs): fix spelling mistake in npm-install.md docsBrett Zamir
PR-URL: https://github.com/npm/cli/pull/285 Credit: @brettz9 Close: #285 Reviewed-by: @claudiahdz
2019-11-14chore(docs): docs cleanupclaudiahdz
chore(docs): change chmod markdown files chore(docs): update gitignore
2019-11-14feat(docs): adding tests and updating docs to reflect changes in registry ↵Amal Hussein
teams API. The default developers team can not longer be removed PR-URL: https://github.com/npm/cli/pull/457 Credit: @nomadtechie Close: #457 Reviewed-by: @claudiahdz
2019-11-14docs: compress inlined SVGXhmikosR
2427 bytes -> 2045 bytes PR-URL: https://github.com/npm/cli/pull/463 Credit: @XhmikosR Close: #463 Reviewed-by: @claudiahdz
2019-11-14feat(docs): add UI state to docs websiteclaudiahdz
2019-11-14chore(docs): fix links on markdownsclaudiahdz
chore(docs): fix styling issues on man and html docs chore(docs): fix absolute links on cli docs
2019-11-05doc: Move @VERSION@ for html docs into gatsbyisaacs
2019-11-05docs: Updated lorem ipsum with real copy.orion
Modified the copy of the "Publish" card to make the transition to npmjs.com/products less jarring PR-URL: https://github.com/npm/cli/pull/277 Credit: @oletizi Close: #277 Reviewed-by: @ruyadorno
2019-11-05docs: added copy to the features pageorion
- Added an install page (copied from existing online docs) - Added a FeatureLink component to components/links.js
2019-11-05docs: removed refs to npm-indexRuy Adorno
2019-11-05fund: add fund commandRuy Adorno
This commit introduces the `npm fund` command that lists all `funding` info provided by the installed dependencies of a given project. Notes on implementation: - `lib/utils/funding.js` Provides helpers to validate funding info and return a tree-shaped structure containing the funding data for all deps. - `lib/fund.js` Implements `npm fund <pkg>` command - Added tests - `npm install` mention of funding - `npm fund <pkg>` variations - unit tests for added `lib/utils` and `lib/install` helpers - Added docs for `npm fund`, `funding` `package.json` property - Fixed `lib/utils/open-url` to support `--json` config - Documented `unicode` on `npm install` docs - fix tests - fix planned tap tests - alternative solution to --no-browser arg - docs: moved fund docs to new location Refs: https://github.com/npm/rfcs/blob/2d2f00457ab19b3003eb6ac5ab3d250259fd5a81/accepted/0017-add-funding-support.md PR-URL: https://github.com/npm/cli/pull/273 Credit: @ruyadorno Close: #273 Reviewed-by: @darcyclarke
2019-11-05support: add support subcommandKyle E. Mitchell
PR-URL: https://github.com/npm/cli/pull/246 Credit: @kemitchell Close: #246 Reviewed-by: @ruyadorno Thanks @kemitchell for providing the initial work that served as a base for `npm fund`, its original commits messages are preserved as such: - support: add support subcommand - support: fix request caching - support: further sanitize contributor data - doc: Fix typo - support: simplify to just collecting and showing URLs - install: improve `npm support` test - install: drop "the" before "projects you depend on" - doc: Reword mention of `npm support` in `package.json` spec
2019-11-05docs: migrate existing docs to gatsbyclaudiahdz
- chore(docs): remove html from docs build - feat(docs): migrate new Gatsby site to cli/docs - chore(docs): fix docs url path - chore(docs): add new build doc step - chore(docs): add static linking - chore(docs): add npm favicon - chore(docs): update files for tests - chore(docs): make relative paths absolute - chore(docs): fix routing on docs dependant tests - chore(docs): add prepublishOnly docs building step - chore(docs): add docs/public to .gitignore - chore(docs): rename dot json markdown files with hyphen names - chore(docs): clean package.json - chore(docs): highlight scripts in list - chore(docs): add strong styles - chore(docs): fix .json links on markdown - Added copy to the features page - Added an install page (copied from existing online docs) - Added a FeatureLink component to components/links.js - feat(docs): replace docs sh script with node - chore(docs): fix docs building process - chore(docs): docs folder cleanup PR-URL: https://github.com/npm/cli/pull/274 Credit: @claudiahdz Close: #274 Reviewed-by: @ruyadorno