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
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2020-07-23 20:58:04 +0300
committerisaacs <i@izs.me>2020-07-29 21:53:42 +0300
commitad5e07d8bd86d1dbe2b03dc142f8c8d6f4828ffe (patch)
tree97b66f97d77f35774f10a5e3e9957b1897d150bb /node_modules/process-nextick-args
parenta16994cfdd2f255016f3d8ee60d03473d80eabd8 (diff)
Full dependency reboot
Reinstall everything from a clean node_modules and package-lock.json state. Re-generate list of bundleDependencies and node_modules/.gitignore with a script that does the right thing based on actual dependency state.
Diffstat (limited to 'node_modules/process-nextick-args')
-rw-r--r--node_modules/process-nextick-args/index.js3
-rw-r--r--node_modules/process-nextick-args/package.json16
2 files changed, 11 insertions, 8 deletions
diff --git a/node_modules/process-nextick-args/index.js b/node_modules/process-nextick-args/index.js
index 5f585e8e7..3eecf1148 100644
--- a/node_modules/process-nextick-args/index.js
+++ b/node_modules/process-nextick-args/index.js
@@ -1,6 +1,7 @@
'use strict';
-if (!process.version ||
+if (typeof process === 'undefined' ||
+ !process.version ||
process.version.indexOf('v0.') === 0 ||
process.version.indexOf('v1.') === 0 && process.version.indexOf('v1.8.') !== 0) {
module.exports = { nextTick: nextTick };
diff --git a/node_modules/process-nextick-args/package.json b/node_modules/process-nextick-args/package.json
index 9eafcd2d0..69bd91580 100644
--- a/node_modules/process-nextick-args/package.json
+++ b/node_modules/process-nextick-args/package.json
@@ -1,8 +1,8 @@
{
"_from": "process-nextick-args@~2.0.0",
- "_id": "process-nextick-args@2.0.0",
+ "_id": "process-nextick-args@2.0.1",
"_inBundle": false,
- "_integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==",
+ "_integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
"_location": "/process-nextick-args",
"_phantomChildren": {},
"_requested": {
@@ -16,12 +16,14 @@
"fetchSpec": "~2.0.0"
},
"_requiredBy": [
- "/readable-stream"
+ "/are-we-there-yet/readable-stream",
+ "/concat-stream/readable-stream",
+ "/fs-write-stream-atomic/readable-stream"
],
- "_resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
- "_shasum": "a37d732f4271b4ab1ad070d35508e8290788ffaa",
+ "_resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "_shasum": "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2",
"_spec": "process-nextick-args@~2.0.0",
- "_where": "/Users/rebecca/code/npm/node_modules/readable-stream",
+ "_where": "/Users/isaacs/dev/npm/cli/node_modules/are-we-there-yet/node_modules/readable-stream",
"author": "",
"bugs": {
"url": "https://github.com/calvinmetcalf/process-nextick-args/issues"
@@ -46,5 +48,5 @@
"scripts": {
"test": "node test.js"
},
- "version": "2.0.0"
+ "version": "2.0.1"
}