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/test
AgeCommit message (Collapse)Author
2017-05-26test: rewrite bundled-dependencies-nonarray to not use link depsRebecca Turner
2017-05-26common-tap: Make common.npm support returning promsiesRebecca Turner
2017-05-26filespecs: Implement new file: specifier behaviorRebecca Turner
PR-URL: https://github.com/npm/npm/pull/15900 Credit: @iarna actions: Allow actions to return promises extract: Eliminate extra callback finalize: Rewrite finalize as promises update-linked: Remove update-linked action install: Remove obsolete invalid action filtering fetch-package-metadata: Error on installing windows paths on non-windows systems fetch-package-metadata: Read in modules installed inside of new links finalize: Act on realpaths because we may be installing inside a link prior to the symlink being made finalize: Create symlinks of directory deps deps: Resolve ambiguity for file specifiers in the traditional way deps: Set link and realpath properties for directory deps inflate-bundled: Distinguish published bundles from lined modules node: Add new fromLink attribute to track sourced-to-symlinks deps diff-trees: Don't try to install deps that are already inside a link fetch-package-metadata: Improve error messages for link failures install: Run preinstall lifecycle after finalize finalize: Start reading package.json files here decompose-actions: Don't fetch or extract links deps: Determine if a link matches spec based on where it points deps: Compute correct save specifier for file spec deps: Set the isInLink property on new children deps: When finding the install location, don't walk up out of a symlink unless PRESERVE_SYMLINKS is on diff-trees: Stop setting isInLink, this is now a first class property diff-trees: Only exclude children of links from adding if they were already there behind the symlink inflate-bundled: We are using isInLink now not fromLink inflate-bundled: realpaths should be built on realpaths node: Eliminate fromLink as a thing node: Fill in values for inLink, isInLink & fromBundle save: When updating a lock/shrinkwrap don't read the damn tree again shrinkwrap: Fill in version per the new shrinkwrap spec install: Make _inBundle purely a debugging artifact inflate-shrinkwrap: Fix how bundle deps are inflated save: Detect dependency type when saving recalculateMetadata: Rewrite as simpler and synchronous prune: Work off computed metadata refreshPackageJson: Copy all of the in memory version over the on-disk version except empty items install: Reduce normalize tree function to minimum realize-package-specifier: Bring into closer alignment with spec read-shrinkwrap: Use child.isTop not !child.parent copy-tree: Don't crash of requires or requiredBy are missing copy-tree: Initialize copied nodes dedupe: use getRequested instead of child.package._requested install: recompute the pkg relationships after finalize Neccessary to align behavior with shrinkwraps where relationship information isn't available until we read the module off disk. install: Prune the tree after building it install: Only save deps if we made changes inflate-shrinkwrap: Better metadata while inflating
2017-05-26test: Spec tests for local specifiersRebecca Turner
2017-05-26common-tap: Make environment objects immutableRebecca Turner
2017-05-26test: no need to call shrinkwrapKat Marchán
2017-05-26tests: move pending tests out of the wayKat Marchán
2017-05-26fix(tests): update override-bundledKat Marchán
2017-05-26fix(tests): removing obsolete shrinwkrap testsKat Marchán
2017-05-26fix(git): integrity hash was failing sometimesKat Marchán
2017-05-26fix(test): dev deps are included in shrinkwraps by default nowKat Marchán
2017-05-26fix(tests): shrinkwrap always includes the full treeKat Marchán
2017-05-26feat(git): git repos with prepare scripts are now built on installKat Marchán
2017-05-26test: npm it test was clobbering package-lock.jsonKat Marchán
2017-05-26test: disable shrinkwrap for self-install testKat Marchán
2017-05-26tests: Expect package-locksKat Marchán
2017-05-26cleanup: fix standard bitsKat Marchán
2017-05-26fix(test): updated splat-with-only-prerelease-latest testKat Marchán
2017-05-26fix(tests): update retry-on-stale-cache to use --prefer-offlineKat Marchán
2017-05-26fix(tests): get.js is no longer used for package downloads and is not cachedKat Marchán
2017-05-26fix(tests): getting test suite working againKat Marchán
2017-05-26test: fixing standard failsKat Marchán
2017-05-26tests: Update tests to support new output formatsRebecca Turner
2017-04-28*: Patch to support npm-package-arg@5Rebecca Turner
2017-04-21doctor: do not crash w/ registries that do not support pingDaijiro Wachi
If registry doesn't support ping, npm doctor should display the information instead of stopping its investigation. Credit: @watilde PR-URL: https://github.com/npm/npm/pull/16021 Reviewed-By: @iarna
2017-04-21version: Add `--allow-same-version` optionLucas Theisen
Fixes: #11342 PR-URL: https://github.com/npm/npm/pull/16213 Credit: @lucastheisen Reviewed-By: @iarna
2017-04-21error-message: Shorten the ELIFECYCLE error messageJ F
Credit: @j-f1 Reviewed-By: @iarna PR-URL: https://github.com/npm/npm/pull/16364 Fixes: https://github.com/npm/npm/issues/8821
2017-03-25lifecycle: On SIGINT, ensure process stays alive until child exitsJarid Margolin
PR-URL: https://github.com/npm/npm/pull/16129 Credit: @jaridmargolin Reviewed-By: @iarna
2017-03-17test: Ensure we aren't using any scoped modulesRebecca Turner
Because npms prior 4.4.3 can't install dependencies that have bundled scoped modules. This didn't show up sooner because they ALSO had a bug that caused bundled scoped modules to not be included in the bundle. Credit: @iarna PR-URL: https://github.com/npm/npm/pull/16066
2017-03-16pack: Bundle dependencies inside bundled scope depsRebecca Turner
Credit: @iarna PR-URL: https://github.com/npm/npm/pull/16040 Reviewed-By: @zkat
2017-03-10search: populate version number in resultsBenjamin E. Coe
* fix: we were not populating version # in new search results * chore: address @zkat's review PR-URL: https://github.com/npm/npm/pull/15824 Credit: @bcoe Reviewed-By: @zkat
2017-03-10test: don't use undocumented res.writeHeader alias (#15874)Сковорода Никита Андреевич
res.writeHeader is an undocumented alias to res.writeHead It's docs-deprecated in https://github.com/nodejs/node/pull/11355 PR-URL: https://github.com/npm/npm/pull/15874 Credit: @ChALkeR Reviewed-By: @zkat
2017-03-10install: Use EXDEV aware move instead of rename (#15901)Rebecca Turner
This will allow moving across devices and moving when filesystems don't support renaming directories full of files. PR-URL: https://github.com/npm/npm/pull/15901 Credit: @iarna Reviewed-By: @zkat
2017-03-10fetch-package-metadata: Limit ourselves to 10 concurrent metadata fetchesRebecca Turner
PR-URL: https://github.com/npm/npm/pull/15967 Credit: @iarna Reviewed-By: @zkat
2017-03-10ls: stop flattening output, show the actual treeRebecca Turner
PR-URL: https://github.com/npm/npm/pull/15888 Credit: @iarna Reviewed-By: @zkat
2017-02-24error-message: Stop encouraging users to always visit the issue tracker.Rebecca Turner
Credit: @iarna Reviewed-By: @zkat Reviewed-By: @ceejbot PR-URL: https://github.com/npm/npm/pull/15716
2017-02-24metrics: Default reporting metrics to default registryRebecca Turner
Previously it defaulted to the global registry, now it will default to whatever your default registry is. Credit: @iarna PR-URL: https://github.com/npm/npm/pull/15757
2017-02-24validate-tree: Warn on deps in both dependencies and devDependenciesTeomanDavid
Fixes: #6725 Credit: @TedYav PR-URL: https://github.com/npm/npm/pull/15772 Reviewed-By: @iarna
2017-02-24test: avoid tearDown in add-remote-git-submodule to work w/ tap@10Rebecca Turner
2017-02-10test: add tests for oauth and saml supportKat Marchán
PR-URL: https://github.com/npm/npm/pull/13389 Credit: @zkat Reviewed-By: @iarna
2017-01-25run-script: keep exit code (#15413)Dmitry Litvinchenko
PR-URL: https://github.com/npm/npm/pull/15413 Credit: @kapals Reviewed-By: @iarna
2017-01-25test: tests for new search codeKat Marchán
PR-URL: https://github.com/npm/npm/pull/15481 Credit: @zkat Reviewed-By: @iarna Reviewed-By: @bcoe
2017-01-25npm: Put the npm-debug logs in the cache folder, not cwd.isaacs
We also are storing a configurable number of previous log files. PR-URL: https://github.com/npm/npm/pull/11439 Fixes: #5252 Fixes: #6350 Fixes: #1548 Fixes: #7614 Credit: @KenanY Credit: @othiym23 Credit: @isaacs Credit: @iarna
2017-01-04unsupported,travis: Remove 0.12 from our supported listRebecca Turner
Credit: @iarna
2017-01-04common-tap: Disable metric sending for test suiteRebecca Turner
Credit: @iarna
2016-12-15doctor: add new subcommandDaijiro Wachi
This command will diagnose user's environment and let the user know some recommended solutions if they potentially have any problems related to npm. Credit: @watilde Reviewed-By: @othiym23 Reviewed-By: @iarna PR-URL: https://github.com/npm/npm/pull/14582 Fixes: #6756
2016-12-13prune: Rewrite to use npm@3 plumbingRebecca Turner
PR-URL: https://github.com/npm/npm/pull/15090 Credit: @iarna Reviewed-By: @zkat
2016-12-13fetch-package-metadata,add-named: Unify package version selectionRebecca Turner
2016-12-13save: stop using url.format for relative local dep pathsKat Marchán
Fixes: https://github.com/npm/npm/issues/15097 PR-URL: https://github.com/npm/npm/issues/15114 Credit: @zkat Reviewed-By: @iarna
2016-12-13add-named: allow splat tag to be configurableKat Marchán
Credit: @zkat PR-URL: https://github.com/npm/npm/pull/15196 Reviewed-By: @iarna