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/lib
AgeCommit message (Collapse)Author
2017-06-09extract: force standardized perms like npm used toKat Marchán
2017-06-08shrinkwrap: quick fix for possibility that req is sometimes null (#16937)Emily Marigold Klassen
PR-URL: https://github.com/npm/npm/pull/16937 Credit: @forivall Reviewed-By: @forivall
2017-06-08deps: ignore npa.resolve error from parsing peerDeps (#17005)Kat Marchán
This emulates npm@4's behavior of simply marking the peerDep as invalid, instead of crashing. Fixes: #16981 PR-URL: https://github.com/npm/npm/pull/17005 Credit: @zkat
2017-06-08deps: use relaxed semver range matching for compatibility (#17007)Kat Marchán
Fixes: #16925 Fixes: #16931 PR-URL: https://github.com/npm/npm/pull/17007 Credit: @zkat Reviewed-By: @iarna
2017-06-08shrinkwrap: lean on from field for better forward-compat (#17076)Kat Marchán
PR-URL: https://github.com/npm/npm/pull/17076 Credit: @zkat Reviewed-By: @iarna
2017-06-06commands: mix it up a bit (#17001)Aki
🍹 and a piña colada for Isaac. PR-URL: https://github.com/npm/npm/pull/17001 Credit: @gesa Reviewed-By: @zkat
2017-06-06doctor: ignore errors from ping()Kat Marchán
2017-06-06doctor: new cacache sets content files to be read-onlyKat Marchán
2017-06-06standard: fixing linting issuesKat Marchán
2017-06-06pacote: send certificate authority, cert and key config through (#16917)Colin Rotherham
PR-URL: https://github.com/npm/npm/pull/16917 Credit: @colinrotherham Reviewed-By: @zkat
2017-06-06docs: fix up prepublish deprecation messageHirse
Fixes: #16685 PR-URL: https://github.com/npm/npm/pull/16918 Credit: @Hirse Reviewed-By: @zkat
2017-06-05pacote: Generate and pass npm-session header value to pacote (#16929)Zach Renner
PR-URL: https://github.com/npm/npm/pull/16929 Credit: @zarenner Reviewed-By: @zkat
2017-06-02install: bikeshed new package outputKat Marchán
Credit: @zkat
2017-06-02install: print spec for each requested package (#16899)Ryan Graham
For every package that is given as an argument to install, print the name and version that was actually installed. Fixes: #16897 PR-URL: https://github.com/npm/npm/pull/16899 Credit: @rmg Reviewed-By: @zkat
2017-06-02build: get npm to write the builtin config even if npm binary name changesKat Marchán
2017-06-02inflate-bundled: Guard against cycles, as symlinks are bundles nowRebecca Turner
Fixes: #16800 Credit: @iarna Reviewed-By: @zkat
2017-06-02docs: remove --save from npm init instructions (#16895)Jason Wohlgemuth
PR-URL: https://github.com/npm/npm/pull/16895 Credit: @jhwohlgemuth Reviewed-By: @zkat
2017-06-01inflate-shrinkwrap: fix installing with --no-shrinkwrap (#16835)Jack Nagel
PR-URL: https://github.com/npm/npm/pull/16835 Credit: @jacknagel Reviewed-By: @zkat
2017-05-31docs: update cli usage for test command (#16771)George Rawlinson
Fixes: #16748 PR-URL: https://github.com/npm/npm/pull/16771 Credit: @grawlinson Reviewed-By: @zkat
2017-05-31view: wait until write completes to call cb (#16791)Kat Marchán
Fixes: https://github.com/npm/npm/issues/16780 PR-URL: https://github.com/npm/npm/pull/16791 Credit: @zkat Reviewed-By: @iarna
2017-05-31publish: adapt config for publish RegClient (#16762)Kat Marchán
Fixes: #16746 PR-URL: https://github.com/npm/npm/pull/16762 Credit: @zkat
2017-05-31finalize: Guard against being unable to compute _requested sourceRebecca Turner
Credit: @iarna
2017-05-27error-handler: remove unused argument (#16757)薛定谔的猫
PR-URL: https://github.com/npm/npm/pull/16757 Credit: @Aladdin-ADD Reviewed-By: @zkat
2017-05-27ls: remove unused argument (#16756)薛定谔的猫
PR-URL: https://github.com/npm/npm/pull/16756 Credit: @Aladdin-ADD Reviewed-By: @zkat
2017-05-27utils: Remove slow assertion from module-name util (#16749)Mike Sherov
PR-URL: https://github.com/npm/npm/pull/16749 Credit: @mikesherov Reviewed-By: @zkat Reviewed-By: @iarna
2017-05-26pkglock: remove packageIntegrity field of doomKat Marchán
2017-05-26lifecycle: added prepack and postpack (#16725)Kat Marchán
2017-05-26preinstall: Runs in the final dest, not the staging folderRebecca Turner
2017-05-26pacote: more alwaysAuth logicKat Marchán
2017-05-26pacote: decode password before passing it onKat Marchán
2017-05-26ls: Nothing is extraneous without a package.jsonRebecca Turner
It used to be that we did this check in `is-extraneous` but it turns out to be much cleaner to keep that pure. It let's us use `is-extraneous` for things like pruning.
2017-05-26install: allow parseable output for nodes w/o pathsRebecca Turner
This can happen when, for example, removing a module from your project that isn't actually in your node_modules at the moment.
2017-05-26remove-deps: Update dependencies list even if we're not savingRebecca Turner
2017-05-26pacote: look for always-auth tooKat Marchán
2017-05-26pacote: send username/password auth through, tooKat Marchán
2017-05-26pkglock: add --no-package-lock option as --no-shrinkwrap aliasKat Marchán
2017-05-26install: no need to install non-requested depsRebecca Turner
Previously we were doing this so we could load relationships, but now we can simply request no fake children. This forces a fetch-metadata phase for the lockfile, but does not actually install all the modules.
2017-05-26uninstall: defer arg clearing till after global dir is filteredRebecca Turner
2017-05-26test: modernize uninstall-saveRebecca Turner
2017-05-26install,uninstall: Disable fake children when installing one mod or uninstallingRebecca Turner
2017-05-26install: Make removing packages work w/o package.jsonRebecca Turner
2017-05-26uninstall: remove stray console.logKat Marchán
2017-05-26save: use removedChildren instead of removedKat Marchán
2017-05-26error-handler: force an exit instead of waiting for tasksKat Marchán
2017-05-26standard: fix some loose endsKat Marchán
2017-05-26utils/link: Make less race proneRebecca Turner
Previously it was gently-rming it's target before making a new target directory. gently-rm vacuums, removing empty directories. This was fine until you run more than one `link` command concurrently, at which point it's entirely possible for one invocation to `mkdir` the directory, then immediately have another one `gently-rm` it, at which point the symlink fails. Races!
2017-05-26install: call saveRequested even if no changes, to regenerate package-lockKat Marchán
2017-05-26install-deps: Match symlinked transitive deps correctlyRebecca Turner
2017-05-26install: Run preinstall prior to reading the treeRebecca Turner
2017-05-26fix(shrinkwrap): clarify reuse of sw resolved for diff-registry childrenRebecca Turner