@automattic/vip 2.11.2 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +7 -2
- package/README.md +11 -0
- package/config/{config.json → config.publish.json} +0 -0
- package/dist/bin/vip-wp.js +2 -2
- package/dist/bin/vip.js +1 -1
- package/dist/lib/analytics/clients/stub.js +1 -1
- package/dist/lib/analytics/clients/tracks.js +0 -5
- package/dist/lib/analytics/index.js +13 -1
- package/dist/lib/api.js +2 -2
- package/dist/lib/cli/config.js +30 -0
- package/dist/lib/dev-environment/dev-environment-cli.js +3 -0
- package/dist/lib/http/proxy-agent.js +94 -0
- package/dist/lib/rollbar.js +1 -1
- package/dist/lib/tracker.js +1 -1
- package/npm-shrinkwrap.json +319 -133
- package/package.json +12 -9
- package/dist/lib/http/socks-proxy-agent.js +0 -25
- package/helpers/prepare-config.js +0 -19
- package/vip.iml +0 -11
package/CONTRIBUTING.md
CHANGED
|
@@ -10,6 +10,11 @@ Tests are powered by [Jest](https://jestjs.io).
|
|
|
10
10
|
|
|
11
11
|
## Developing
|
|
12
12
|
|
|
13
|
+
### Node version
|
|
14
|
+
|
|
15
|
+
To develop use the minimum supported node version. You can take a look in the `package.json` `engines` configuration
|
|
16
|
+
or, if you use tools like `nvm` you can run `nvm use` to ensure you're running the right one.
|
|
17
|
+
|
|
13
18
|
### Local Dev
|
|
14
19
|
|
|
15
20
|
To test against a local instance of Parker, you can use the `API_HOST` env var. You'll also want to nullify the `VIP_PROXY` env var as well.
|
|
@@ -91,7 +96,7 @@ Then, let's publish:
|
|
|
91
96
|
1. Push the tag to GitHub (`git push --tags`)
|
|
92
97
|
1. Push the master branch `git push`
|
|
93
98
|
1. Make sure you're part of the Automattic organization in npm
|
|
94
|
-
1. Publish the release to npm (`npm run publish-please --access public`)
|
|
99
|
+
1. Publish the release to npm (`npm run publish-please --access public`) the script will do some extra checks (npm version, branch, etc) to ensure everything is correct. If all looks good, proceed.
|
|
95
100
|
1. Edit [the release on GitHub](https://github.com/Automattic/vip/releases) to include a description of the changes and publish (this can just copy the details from the changelog).
|
|
96
101
|
1. Push `master` changes (mostly the version bump) to `develop` (`git checkout develop && git merge master` )
|
|
97
102
|
|
|
@@ -127,4 +132,4 @@ Then, repeat for any additional versions that we need to patch.
|
|
|
127
132
|
|
|
128
133
|
Some unit tests require some go-search-replace executable binary files to run. Binaries files for several OS architectures can be downloaded from https://github.com/Automattic/go-search-replace/releases/
|
|
129
134
|
|
|
130
|
-
If, for some reason, you need to compile these binaries yourself, please follow instructions at https://github.com/Automattic/go-search-replace
|
|
135
|
+
If, for some reason, you need to compile these binaries yourself, please follow instructions at https://github.com/Automattic/go-search-replace
|
package/README.md
CHANGED
|
@@ -26,6 +26,17 @@ By default, we record information about the usage of this tool using an in-house
|
|
|
26
26
|
|
|
27
27
|
## Changelog
|
|
28
28
|
|
|
29
|
+
### 2.12.0 (19 May 2022)
|
|
30
|
+
|
|
31
|
+
- #1035 and #1032 Improved publishing checks to publish on npm
|
|
32
|
+
- #1037 [dev-env] only record the php version numbers update/clean_php_version
|
|
33
|
+
- #999 Add Feature to Support HTTPS/HTTP/NO_PROXY Settings
|
|
34
|
+
- #1036 Move DO_NOT_TRACK handling to Analytics lib
|
|
35
|
+
- #1033 [dev-env] Bump lando in order to support node 18
|
|
36
|
+
|
|
37
|
+
#### Special thanks
|
|
38
|
+
frank-cerny for the contribution on #1036
|
|
39
|
+
|
|
29
40
|
### 2.11.2 (12 May 2022)
|
|
30
41
|
|
|
31
42
|
- Hotfix to use correct production config.json in the NPM published package caused by a different NPM version in the build process.
|
|
File without changes
|
package/dist/bin/vip-wp.js
CHANGED
|
@@ -35,7 +35,7 @@ var _token = _interopRequireDefault(require("../lib/token"));
|
|
|
35
35
|
|
|
36
36
|
var _rollbar = require("../lib/rollbar");
|
|
37
37
|
|
|
38
|
-
var
|
|
38
|
+
var _proxyAgent = require("../lib/http/proxy-agent");
|
|
39
39
|
|
|
40
40
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
41
41
|
|
|
@@ -487,7 +487,7 @@ const bindReconnectEvents = ({
|
|
|
487
487
|
}
|
|
488
488
|
}
|
|
489
489
|
},
|
|
490
|
-
agent: (0,
|
|
490
|
+
agent: (0, _proxyAgent.createProxyAgent)(_api.API_HOST)
|
|
491
491
|
});
|
|
492
492
|
currentJob = await launchCommandAndGetStreams({
|
|
493
493
|
socket,
|
package/dist/bin/vip.js
CHANGED
|
@@ -13,7 +13,7 @@ var _chalk = _interopRequireDefault(require("chalk"));
|
|
|
13
13
|
|
|
14
14
|
var _debug = _interopRequireDefault(require("debug"));
|
|
15
15
|
|
|
16
|
-
var _config = _interopRequireDefault(require("
|
|
16
|
+
var _config = _interopRequireDefault(require("../lib/cli/config"));
|
|
17
17
|
|
|
18
18
|
var _command = _interopRequireWildcard(require("../lib/cli/command"));
|
|
19
19
|
|
|
@@ -100,11 +100,6 @@ class Tracks {
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
send(extraParams) {
|
|
103
|
-
if (process.env.DO_NOT_TRACK) {
|
|
104
|
-
debug('send() => skipping per DO_NOT_TRACK variable');
|
|
105
|
-
return Promise.resolve('tracks disabled per DO_NOT_TRACK variable');
|
|
106
|
-
}
|
|
107
|
-
|
|
108
103
|
const params = Object.assign({}, this.baseParams, extraParams);
|
|
109
104
|
const method = 'POST';
|
|
110
105
|
|
|
@@ -5,6 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
|
|
8
|
+
var _debug = _interopRequireDefault(require("debug"));
|
|
9
|
+
|
|
8
10
|
var _stub = _interopRequireDefault(require("./clients/stub"));
|
|
9
11
|
|
|
10
12
|
var _env = _interopRequireDefault(require("../env"));
|
|
@@ -12,10 +14,15 @@ var _env = _interopRequireDefault(require("../env"));
|
|
|
12
14
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
15
|
|
|
14
16
|
/**
|
|
15
|
-
*
|
|
17
|
+
* External dependencies
|
|
16
18
|
*/
|
|
17
19
|
|
|
20
|
+
/**
|
|
21
|
+
* Internal dependencies
|
|
22
|
+
*/
|
|
23
|
+
const debug = (0, _debug.default)('@automattic/vip:analytics');
|
|
18
24
|
/* eslint-disable camelcase */
|
|
25
|
+
|
|
19
26
|
const client_info = {
|
|
20
27
|
cli_version: _env.default.app.version,
|
|
21
28
|
os_name: _env.default.os.name,
|
|
@@ -32,6 +39,11 @@ class Analytics {
|
|
|
32
39
|
}
|
|
33
40
|
|
|
34
41
|
async trackEvent(name, props = {}) {
|
|
42
|
+
if (process.env.DO_NOT_TRACK) {
|
|
43
|
+
debug(`trackEvent() for ${name} => skipping per DO_NOT_TRACK variable`);
|
|
44
|
+
return Promise.resolve(`Skipping trackEvent for ${name} (DO_NOT_TRACK)`);
|
|
45
|
+
}
|
|
46
|
+
|
|
35
47
|
return Promise.all(this.clients.map(client => {
|
|
36
48
|
return client.trackEvent(name, { // eslint-disable-next-line camelcase
|
|
37
49
|
...client_info,
|
package/dist/lib/api.js
CHANGED
|
@@ -23,7 +23,7 @@ var _token = _interopRequireDefault(require("./token"));
|
|
|
23
23
|
|
|
24
24
|
var _env = _interopRequireDefault(require("./env"));
|
|
25
25
|
|
|
26
|
-
var
|
|
26
|
+
var _proxyAgent = require("./http/proxy-agent");
|
|
27
27
|
|
|
28
28
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
29
29
|
|
|
@@ -96,7 +96,7 @@ async function API({
|
|
|
96
96
|
});
|
|
97
97
|
return forward(operation);
|
|
98
98
|
});
|
|
99
|
-
const proxyAgent = (0,
|
|
99
|
+
const proxyAgent = (0, _proxyAgent.createProxyAgent)(API_URL);
|
|
100
100
|
const httpLink = new _core.HttpLink({
|
|
101
101
|
uri: API_URL,
|
|
102
102
|
headers,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _debug = _interopRequireDefault(require("debug"));
|
|
9
|
+
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* External dependencies
|
|
14
|
+
*/
|
|
15
|
+
const debug = (0, _debug.default)('@automattic/vip:lib:cli:config');
|
|
16
|
+
let configFromFile = {};
|
|
17
|
+
|
|
18
|
+
try {
|
|
19
|
+
// Get `local` config first; this will only exist in dev as it's npmignore-d.
|
|
20
|
+
configFromFile = require("../../../config/config.local.json");
|
|
21
|
+
debug('Loaded config data from config.local.json');
|
|
22
|
+
} catch {
|
|
23
|
+
// Fall back to `publish` config file.
|
|
24
|
+
configFromFile = require("../../../config/config.publish.json");
|
|
25
|
+
debug('Loaded config data from config.publish.json');
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const config = Object.assign({}, configFromFile);
|
|
29
|
+
var _default = config;
|
|
30
|
+
exports.default = _default;
|
|
@@ -487,6 +487,8 @@ async function getTagChoices() {
|
|
|
487
487
|
|
|
488
488
|
function getEnvTrackingInfo(slug) {
|
|
489
489
|
try {
|
|
490
|
+
var _result$php;
|
|
491
|
+
|
|
490
492
|
const envData = (0, _devEnvironmentCore.readEnvironmentData)(slug);
|
|
491
493
|
const result = {
|
|
492
494
|
slug
|
|
@@ -499,6 +501,7 @@ function getEnvTrackingInfo(slug) {
|
|
|
499
501
|
result[snakeCasedKey] = value;
|
|
500
502
|
}
|
|
501
503
|
|
|
504
|
+
result.php = (_result$php = result.php) === null || _result$php === void 0 ? void 0 : _result$php.replace(/.*:/, '');
|
|
502
505
|
return result;
|
|
503
506
|
} catch (err) {
|
|
504
507
|
return {
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _socksProxyAgent = require("socks-proxy-agent");
|
|
4
|
+
|
|
5
|
+
var _httpsProxyAgent = require("https-proxy-agent");
|
|
6
|
+
|
|
7
|
+
var _httpProxyAgent = require("http-proxy-agent");
|
|
8
|
+
|
|
9
|
+
var _proxyFromEnv = require("proxy-from-env");
|
|
10
|
+
|
|
11
|
+
var _debug = _interopRequireDefault(require("debug"));
|
|
12
|
+
|
|
13
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* External dependencies
|
|
17
|
+
*/
|
|
18
|
+
const debug = (0, _debug.default)('vip:proxy-agent');
|
|
19
|
+
/**
|
|
20
|
+
* Internal dependencies
|
|
21
|
+
*/
|
|
22
|
+
// Note: This module requires the use of a special environment variable "VIP_USE_SYSTEM_PROXY"
|
|
23
|
+
// The setting of it to any value allows this module to create a proxy agent based on proxy environment variables
|
|
24
|
+
// If not set, this module will revert back to the previous functionality (hence being fully backward compatible and non-breaking for users)
|
|
25
|
+
// This function returns a proxy given a few scenarios (in order of precedence):
|
|
26
|
+
// 1. VIP_PROXY is set: a SOCKS proxy is returned same as the previous version of this module
|
|
27
|
+
// 2. No applicable variables are set: null is returned (thus, no proxy agent is returned)
|
|
28
|
+
// 3. VIP_USE_SYSTEM_PROXY and SOCKS_PROXY are set: a SOCKS_PROXY is returned
|
|
29
|
+
// 4. VIP_USE_SYSTEM_PROXY and HTTPS_PROXY are set: an HTTPS_PROXY is returned
|
|
30
|
+
// 5. VIP_USE_SYSTEM_PROXY and HTTP_PROXY are set: an HTTP_PROXY is returned
|
|
31
|
+
// 6. NO_PROXY is set along with VIP_USE_SYSTEM_PROXY and any system proxy: null is returned if the no proxy applies, otherwise the first active proxy is used
|
|
32
|
+
// This allows near full customization by the client of what proxy should be used, instead of making assumptions based on the URL string
|
|
33
|
+
|
|
34
|
+
function createProxyAgent(url) {
|
|
35
|
+
const VIP_PROXY = process.env.VIP_PROXY || process.env.vip_proxy || null;
|
|
36
|
+
const SOCKS_PROXY = process.env.SOCKS_PROXY || process.env.socks_proxy || null;
|
|
37
|
+
const HTTPS_PROXY = process.env.HTTPS_PROXY || process.env.https_proxy || null;
|
|
38
|
+
const HTTP_PROXY = process.env.HTTP_PROXY || process.env.http_proxy || null;
|
|
39
|
+
const NO_PROXY = process.env.NO_PROXY || process.env.no_proxy || null; // VIP Socks Proxy should take precedence and should be fully backward compatible
|
|
40
|
+
|
|
41
|
+
if (VIP_PROXY) {
|
|
42
|
+
debug(`Enabling VIP_PROXY proxy support using config: ${VIP_PROXY}`);
|
|
43
|
+
return new _socksProxyAgent.SocksProxyAgent(VIP_PROXY);
|
|
44
|
+
} // Now check for any system proxy usage
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
if (process.env.VIP_USE_SYSTEM_PROXY && !coveredInNoProxy(url, NO_PROXY)) {
|
|
48
|
+
if (SOCKS_PROXY) {
|
|
49
|
+
debug(`Enabling SOCKS proxy support using config: ${SOCKS_PROXY}`);
|
|
50
|
+
return new _socksProxyAgent.SocksProxyAgent(SOCKS_PROXY);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
if (HTTPS_PROXY) {
|
|
54
|
+
debug(`Enabling HTTPS proxy support using config: ${HTTPS_PROXY}`);
|
|
55
|
+
return new _httpsProxyAgent.HttpsProxyAgent(HTTPS_PROXY);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (HTTP_PROXY) {
|
|
59
|
+
debug(`Enabling HTTP proxy support using config: ${HTTP_PROXY}`);
|
|
60
|
+
return new _httpProxyAgent.HttpProxyAgent(HTTP_PROXY);
|
|
61
|
+
}
|
|
62
|
+
} // If no environment variables are set, the no proxy is in effect, or if the proxy enable is not set return null (equivilant of no Proxy agent)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
return null;
|
|
66
|
+
} // Determine if a NO_PROXY variable is applicable to a given URL
|
|
67
|
+
// Parameters:
|
|
68
|
+
// - url (string): absolute desintation URL (including the protocol)
|
|
69
|
+
// - noProxyString (string | null): string representation of the environments current NO_PROXY or no_proxy variable (NO_PROXY takes precedence)
|
|
70
|
+
// Returns:
|
|
71
|
+
// - (boolean) true/false depending on result
|
|
72
|
+
// NO_PROXY Rules (based directly on underlying dependency):
|
|
73
|
+
// 1. * (alone): proxy nothing
|
|
74
|
+
// 2. *.site: do not proxy any subdomain of a domain (top level domain must still be given)
|
|
75
|
+
// Example: '.api' does NOT match wp.api.org, but '.api.org' does (see tests)
|
|
76
|
+
// 3. abc.com: do not proxy www.abc.com, abc.com, etc.
|
|
77
|
+
// See proxy-from-env on npmjs.org for full "ruleset"
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
function coveredInNoProxy(url, noProxyString) {
|
|
81
|
+
// If the NO_PROXY env variable is not set, then the URL is not covered in the NO_PROXY (utility below does not handle this case)
|
|
82
|
+
if (!noProxyString) {
|
|
83
|
+
return false;
|
|
84
|
+
} // If getProxyForUrl returns an empty string, then the host should not be proxied
|
|
85
|
+
// This isn't the most straight forward way to determine if a NO_PROXY is applicable, but the only package I could find that is relatively new and maintained
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
return (0, _proxyFromEnv.getProxyForUrl)(url) === '';
|
|
89
|
+
} // Exports
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
module.exports = {
|
|
93
|
+
createProxyAgent
|
|
94
|
+
};
|
package/dist/lib/rollbar.js
CHANGED
|
@@ -7,7 +7,7 @@ exports.rollbar = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _env = _interopRequireDefault(require("./env"));
|
|
9
9
|
|
|
10
|
-
var _config = _interopRequireDefault(require("
|
|
10
|
+
var _config = _interopRequireDefault(require("./cli/config"));
|
|
11
11
|
|
|
12
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
13
|
|
package/dist/lib/tracker.js
CHANGED
|
@@ -15,7 +15,7 @@ var _pendo = _interopRequireDefault(require("./analytics/clients/pendo"));
|
|
|
15
15
|
|
|
16
16
|
var _token = _interopRequireDefault(require("./token"));
|
|
17
17
|
|
|
18
|
-
var _config = _interopRequireDefault(require("
|
|
18
|
+
var _config = _interopRequireDefault(require("./cli/config"));
|
|
19
19
|
|
|
20
20
|
var _env = _interopRequireDefault(require("./env"));
|
|
21
21
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -3811,10 +3811,9 @@
|
|
|
3811
3811
|
}
|
|
3812
3812
|
},
|
|
3813
3813
|
"@tootallnate/once": {
|
|
3814
|
-
"version": "
|
|
3815
|
-
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-
|
|
3816
|
-
"integrity": "sha512-
|
|
3817
|
-
"dev": true
|
|
3814
|
+
"version": "2.0.0",
|
|
3815
|
+
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
|
|
3816
|
+
"integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="
|
|
3818
3817
|
},
|
|
3819
3818
|
"@types/babel__core": {
|
|
3820
3819
|
"version": "7.1.12",
|
|
@@ -4357,9 +4356,9 @@
|
|
|
4357
4356
|
},
|
|
4358
4357
|
"dependencies": {
|
|
4359
4358
|
"follow-redirects": {
|
|
4360
|
-
"version": "1.
|
|
4361
|
-
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.
|
|
4362
|
-
"integrity": "sha512-
|
|
4359
|
+
"version": "1.15.0",
|
|
4360
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.0.tgz",
|
|
4361
|
+
"integrity": "sha512-aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ=="
|
|
4363
4362
|
}
|
|
4364
4363
|
}
|
|
4365
4364
|
},
|
|
@@ -4848,6 +4847,11 @@
|
|
|
4848
4847
|
"resolved": "https://registry.npmjs.org/basename/-/basename-0.1.2.tgz",
|
|
4849
4848
|
"integrity": "sha1-1gOb75OYYxYMeASMztPF5/iMsmE="
|
|
4850
4849
|
},
|
|
4850
|
+
"big.js": {
|
|
4851
|
+
"version": "5.2.2",
|
|
4852
|
+
"resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
|
|
4853
|
+
"integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
|
|
4854
|
+
},
|
|
4851
4855
|
"binary-extensions": {
|
|
4852
4856
|
"version": "2.2.0",
|
|
4853
4857
|
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
|
|
@@ -5220,6 +5224,77 @@
|
|
|
5220
5224
|
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
|
|
5221
5225
|
"integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
|
|
5222
5226
|
},
|
|
5227
|
+
"check-node-version": {
|
|
5228
|
+
"version": "4.2.1",
|
|
5229
|
+
"resolved": "https://registry.npmjs.org/check-node-version/-/check-node-version-4.2.1.tgz",
|
|
5230
|
+
"integrity": "sha512-YYmFYHV/X7kSJhuN/QYHUu998n/TRuDe8UenM3+m5NrkiH670lb9ILqHIvBencvJc4SDh+XcbXMR4b+TtubJiw==",
|
|
5231
|
+
"dev": true,
|
|
5232
|
+
"requires": {
|
|
5233
|
+
"chalk": "^3.0.0",
|
|
5234
|
+
"map-values": "^1.0.1",
|
|
5235
|
+
"minimist": "^1.2.0",
|
|
5236
|
+
"object-filter": "^1.0.2",
|
|
5237
|
+
"run-parallel": "^1.1.4",
|
|
5238
|
+
"semver": "^6.3.0"
|
|
5239
|
+
},
|
|
5240
|
+
"dependencies": {
|
|
5241
|
+
"ansi-styles": {
|
|
5242
|
+
"version": "4.3.0",
|
|
5243
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5244
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5245
|
+
"dev": true,
|
|
5246
|
+
"requires": {
|
|
5247
|
+
"color-convert": "^2.0.1"
|
|
5248
|
+
}
|
|
5249
|
+
},
|
|
5250
|
+
"chalk": {
|
|
5251
|
+
"version": "3.0.0",
|
|
5252
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
|
5253
|
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
|
5254
|
+
"dev": true,
|
|
5255
|
+
"requires": {
|
|
5256
|
+
"ansi-styles": "^4.1.0",
|
|
5257
|
+
"supports-color": "^7.1.0"
|
|
5258
|
+
}
|
|
5259
|
+
},
|
|
5260
|
+
"color-convert": {
|
|
5261
|
+
"version": "2.0.1",
|
|
5262
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5263
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5264
|
+
"dev": true,
|
|
5265
|
+
"requires": {
|
|
5266
|
+
"color-name": "~1.1.4"
|
|
5267
|
+
}
|
|
5268
|
+
},
|
|
5269
|
+
"color-name": {
|
|
5270
|
+
"version": "1.1.4",
|
|
5271
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5272
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
5273
|
+
"dev": true
|
|
5274
|
+
},
|
|
5275
|
+
"has-flag": {
|
|
5276
|
+
"version": "4.0.0",
|
|
5277
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5278
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
5279
|
+
"dev": true
|
|
5280
|
+
},
|
|
5281
|
+
"semver": {
|
|
5282
|
+
"version": "6.3.0",
|
|
5283
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
|
5284
|
+
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
|
5285
|
+
"dev": true
|
|
5286
|
+
},
|
|
5287
|
+
"supports-color": {
|
|
5288
|
+
"version": "7.2.0",
|
|
5289
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5290
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5291
|
+
"dev": true,
|
|
5292
|
+
"requires": {
|
|
5293
|
+
"has-flag": "^4.0.0"
|
|
5294
|
+
}
|
|
5295
|
+
}
|
|
5296
|
+
}
|
|
5297
|
+
},
|
|
5223
5298
|
"chokidar": {
|
|
5224
5299
|
"version": "3.5.2",
|
|
5225
5300
|
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
|
|
@@ -5422,9 +5497,9 @@
|
|
|
5422
5497
|
},
|
|
5423
5498
|
"dependencies": {
|
|
5424
5499
|
"ansi-regex": {
|
|
5425
|
-
"version": "3.0.
|
|
5426
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.
|
|
5427
|
-
"integrity": "
|
|
5500
|
+
"version": "3.0.1",
|
|
5501
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
|
|
5502
|
+
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="
|
|
5428
5503
|
},
|
|
5429
5504
|
"is-fullwidth-code-point": {
|
|
5430
5505
|
"version": "2.0.0",
|
|
@@ -5823,9 +5898,9 @@
|
|
|
5823
5898
|
}
|
|
5824
5899
|
},
|
|
5825
5900
|
"dayjs": {
|
|
5826
|
-
"version": "1.
|
|
5827
|
-
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.
|
|
5828
|
-
"integrity": "sha512-
|
|
5901
|
+
"version": "1.11.2",
|
|
5902
|
+
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.2.tgz",
|
|
5903
|
+
"integrity": "sha512-F4LXf1OeU9hrSYRPTTj/6FbO4HTjPKXvEIC1P2kcnFurViINCVk3ZV0xAS3XVx9MkMsXbbqlK6hjseaYbgKEHw=="
|
|
5829
5904
|
},
|
|
5830
5905
|
"debug": {
|
|
5831
5906
|
"version": "4.3.3",
|
|
@@ -6224,23 +6299,10 @@
|
|
|
6224
6299
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
|
|
6225
6300
|
"integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
|
|
6226
6301
|
},
|
|
6227
|
-
"
|
|
6228
|
-
"version": "0.
|
|
6229
|
-
"resolved": "https://registry.npmjs.org/
|
|
6230
|
-
"integrity": "sha512
|
|
6231
|
-
"requires": {
|
|
6232
|
-
"iconv-lite": "^0.6.2"
|
|
6233
|
-
},
|
|
6234
|
-
"dependencies": {
|
|
6235
|
-
"iconv-lite": {
|
|
6236
|
-
"version": "0.6.3",
|
|
6237
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
6238
|
-
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
6239
|
-
"requires": {
|
|
6240
|
-
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
6241
|
-
}
|
|
6242
|
-
}
|
|
6243
|
-
}
|
|
6302
|
+
"emojis-list": {
|
|
6303
|
+
"version": "3.0.0",
|
|
6304
|
+
"resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
|
|
6305
|
+
"integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
|
|
6244
6306
|
},
|
|
6245
6307
|
"end-of-stream": {
|
|
6246
6308
|
"version": "1.4.4",
|
|
@@ -6281,6 +6343,16 @@
|
|
|
6281
6343
|
"@socket.io/base64-arraybuffer": "~1.0.2"
|
|
6282
6344
|
}
|
|
6283
6345
|
},
|
|
6346
|
+
"enhanced-resolve": {
|
|
6347
|
+
"version": "4.5.0",
|
|
6348
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz",
|
|
6349
|
+
"integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==",
|
|
6350
|
+
"requires": {
|
|
6351
|
+
"graceful-fs": "^4.1.2",
|
|
6352
|
+
"memory-fs": "^0.5.0",
|
|
6353
|
+
"tapable": "^1.0.0"
|
|
6354
|
+
}
|
|
6355
|
+
},
|
|
6284
6356
|
"enquirer": {
|
|
6285
6357
|
"version": "2.3.6",
|
|
6286
6358
|
"resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz",
|
|
@@ -6289,6 +6361,14 @@
|
|
|
6289
6361
|
"ansi-colors": "^4.1.1"
|
|
6290
6362
|
}
|
|
6291
6363
|
},
|
|
6364
|
+
"errno": {
|
|
6365
|
+
"version": "0.1.8",
|
|
6366
|
+
"resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz",
|
|
6367
|
+
"integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
|
|
6368
|
+
"requires": {
|
|
6369
|
+
"prr": "~1.0.1"
|
|
6370
|
+
}
|
|
6371
|
+
},
|
|
6292
6372
|
"error-ex": {
|
|
6293
6373
|
"version": "1.3.2",
|
|
6294
6374
|
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
|
|
@@ -7747,6 +7827,14 @@
|
|
|
7747
7827
|
"netrc": "^0.1.4"
|
|
7748
7828
|
},
|
|
7749
7829
|
"dependencies": {
|
|
7830
|
+
"agent-base": {
|
|
7831
|
+
"version": "4.3.0",
|
|
7832
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz",
|
|
7833
|
+
"integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==",
|
|
7834
|
+
"requires": {
|
|
7835
|
+
"es6-promisify": "^5.0.0"
|
|
7836
|
+
}
|
|
7837
|
+
},
|
|
7750
7838
|
"debug": {
|
|
7751
7839
|
"version": "3.2.7",
|
|
7752
7840
|
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
|
|
@@ -7762,6 +7850,15 @@
|
|
|
7762
7850
|
"requires": {
|
|
7763
7851
|
"debug": "^3.1.0"
|
|
7764
7852
|
}
|
|
7853
|
+
},
|
|
7854
|
+
"https-proxy-agent": {
|
|
7855
|
+
"version": "2.2.4",
|
|
7856
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz",
|
|
7857
|
+
"integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==",
|
|
7858
|
+
"requires": {
|
|
7859
|
+
"agent-base": "^4.3.0",
|
|
7860
|
+
"debug": "^3.1.0"
|
|
7861
|
+
}
|
|
7765
7862
|
}
|
|
7766
7863
|
}
|
|
7767
7864
|
},
|
|
@@ -8038,41 +8135,22 @@
|
|
|
8038
8135
|
"integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="
|
|
8039
8136
|
},
|
|
8040
8137
|
"http-proxy-agent": {
|
|
8041
|
-
"version": "
|
|
8042
|
-
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-
|
|
8043
|
-
"integrity": "sha512-
|
|
8044
|
-
"dev": true,
|
|
8138
|
+
"version": "5.0.0",
|
|
8139
|
+
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz",
|
|
8140
|
+
"integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==",
|
|
8045
8141
|
"requires": {
|
|
8046
|
-
"@tootallnate/once": "
|
|
8142
|
+
"@tootallnate/once": "2",
|
|
8047
8143
|
"agent-base": "6",
|
|
8048
8144
|
"debug": "4"
|
|
8049
8145
|
}
|
|
8050
8146
|
},
|
|
8051
8147
|
"https-proxy-agent": {
|
|
8052
|
-
"version": "
|
|
8053
|
-
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-
|
|
8054
|
-
"integrity": "sha512-
|
|
8148
|
+
"version": "5.0.1",
|
|
8149
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
|
|
8150
|
+
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
|
|
8055
8151
|
"requires": {
|
|
8056
|
-
"agent-base": "
|
|
8057
|
-
"debug": "
|
|
8058
|
-
},
|
|
8059
|
-
"dependencies": {
|
|
8060
|
-
"agent-base": {
|
|
8061
|
-
"version": "4.3.0",
|
|
8062
|
-
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz",
|
|
8063
|
-
"integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==",
|
|
8064
|
-
"requires": {
|
|
8065
|
-
"es6-promisify": "^5.0.0"
|
|
8066
|
-
}
|
|
8067
|
-
},
|
|
8068
|
-
"debug": {
|
|
8069
|
-
"version": "3.2.7",
|
|
8070
|
-
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
|
|
8071
|
-
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
|
|
8072
|
-
"requires": {
|
|
8073
|
-
"ms": "^2.1.1"
|
|
8074
|
-
}
|
|
8075
|
-
}
|
|
8152
|
+
"agent-base": "6",
|
|
8153
|
+
"debug": "4"
|
|
8076
8154
|
}
|
|
8077
8155
|
},
|
|
8078
8156
|
"human-signals": {
|
|
@@ -8180,9 +8258,9 @@
|
|
|
8180
8258
|
},
|
|
8181
8259
|
"dependencies": {
|
|
8182
8260
|
"ansi-regex": {
|
|
8183
|
-
"version": "3.0.
|
|
8184
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.
|
|
8185
|
-
"integrity": "
|
|
8261
|
+
"version": "3.0.1",
|
|
8262
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
|
|
8263
|
+
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="
|
|
8186
8264
|
},
|
|
8187
8265
|
"chalk": {
|
|
8188
8266
|
"version": "2.4.2",
|
|
@@ -8227,9 +8305,9 @@
|
|
|
8227
8305
|
},
|
|
8228
8306
|
"dependencies": {
|
|
8229
8307
|
"ansi-regex": {
|
|
8230
|
-
"version": "4.1.
|
|
8231
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.
|
|
8232
|
-
"integrity": "sha512-
|
|
8308
|
+
"version": "4.1.1",
|
|
8309
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
|
|
8310
|
+
"integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="
|
|
8233
8311
|
}
|
|
8234
8312
|
}
|
|
8235
8313
|
}
|
|
@@ -8681,23 +8759,12 @@
|
|
|
8681
8759
|
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
|
|
8682
8760
|
},
|
|
8683
8761
|
"isomorphic-fetch": {
|
|
8684
|
-
"version": "
|
|
8685
|
-
"resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-
|
|
8686
|
-
"integrity": "
|
|
8762
|
+
"version": "3.0.0",
|
|
8763
|
+
"resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz",
|
|
8764
|
+
"integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==",
|
|
8687
8765
|
"requires": {
|
|
8688
|
-
"node-fetch": "^
|
|
8689
|
-
"whatwg-fetch": "
|
|
8690
|
-
},
|
|
8691
|
-
"dependencies": {
|
|
8692
|
-
"node-fetch": {
|
|
8693
|
-
"version": "1.7.3",
|
|
8694
|
-
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
|
|
8695
|
-
"integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
|
|
8696
|
-
"requires": {
|
|
8697
|
-
"encoding": "^0.1.11",
|
|
8698
|
-
"is-stream": "^1.0.1"
|
|
8699
|
-
}
|
|
8700
|
-
}
|
|
8766
|
+
"node-fetch": "^2.6.1",
|
|
8767
|
+
"whatwg-fetch": "^3.4.1"
|
|
8701
8768
|
}
|
|
8702
8769
|
},
|
|
8703
8770
|
"isstream": {
|
|
@@ -9884,12 +9951,29 @@
|
|
|
9884
9951
|
"xml-name-validator": "^3.0.0"
|
|
9885
9952
|
},
|
|
9886
9953
|
"dependencies": {
|
|
9954
|
+
"@tootallnate/once": {
|
|
9955
|
+
"version": "1.1.2",
|
|
9956
|
+
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
|
|
9957
|
+
"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
|
|
9958
|
+
"dev": true
|
|
9959
|
+
},
|
|
9887
9960
|
"acorn": {
|
|
9888
9961
|
"version": "8.5.0",
|
|
9889
9962
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz",
|
|
9890
9963
|
"integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==",
|
|
9891
9964
|
"dev": true
|
|
9892
9965
|
},
|
|
9966
|
+
"http-proxy-agent": {
|
|
9967
|
+
"version": "4.0.1",
|
|
9968
|
+
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
|
|
9969
|
+
"integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
|
|
9970
|
+
"dev": true,
|
|
9971
|
+
"requires": {
|
|
9972
|
+
"@tootallnate/once": "1",
|
|
9973
|
+
"agent-base": "6",
|
|
9974
|
+
"debug": "4"
|
|
9975
|
+
}
|
|
9976
|
+
},
|
|
9893
9977
|
"https-proxy-agent": {
|
|
9894
9978
|
"version": "5.0.0",
|
|
9895
9979
|
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz",
|
|
@@ -9951,7 +10035,6 @@
|
|
|
9951
10035
|
"version": "2.2.0",
|
|
9952
10036
|
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz",
|
|
9953
10037
|
"integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==",
|
|
9954
|
-
"dev": true,
|
|
9955
10038
|
"requires": {
|
|
9956
10039
|
"minimist": "^1.2.5"
|
|
9957
10040
|
}
|
|
@@ -10021,8 +10104,8 @@
|
|
|
10021
10104
|
"dev": true
|
|
10022
10105
|
},
|
|
10023
10106
|
"lando": {
|
|
10024
|
-
"version": "git+
|
|
10025
|
-
"from": "
|
|
10107
|
+
"version": "git+https://github.com/Automattic/lando-cli.git#54d8a2d5f97bca2ce1f3b1a67ef8b63f2a5a5305",
|
|
10108
|
+
"from": "git+https://github.com/Automattic/lando-cli.git#v3.5.2-patch2022_05_13",
|
|
10026
10109
|
"requires": {
|
|
10027
10110
|
"@lando/platformsh": "^0.6.0",
|
|
10028
10111
|
"axios": "0.21.4",
|
|
@@ -10037,7 +10120,7 @@
|
|
|
10037
10120
|
"glob": "^7.1.3",
|
|
10038
10121
|
"inquirer": "^6.2.1",
|
|
10039
10122
|
"inquirer-autocomplete-prompt": "^1.0.1",
|
|
10040
|
-
"ip": "^1.1.
|
|
10123
|
+
"ip": "^1.1.8",
|
|
10041
10124
|
"js-yaml": "^3.4.6",
|
|
10042
10125
|
"jsonfile": "^2.4.0",
|
|
10043
10126
|
"localtunnel": "^1.9.2",
|
|
@@ -10059,17 +10142,9 @@
|
|
|
10059
10142
|
},
|
|
10060
10143
|
"dependencies": {
|
|
10061
10144
|
"ansi-regex": {
|
|
10062
|
-
"version": "3.0.
|
|
10063
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.
|
|
10064
|
-
"integrity": "
|
|
10065
|
-
},
|
|
10066
|
-
"cli-table": {
|
|
10067
|
-
"version": "0.3.11",
|
|
10068
|
-
"resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz",
|
|
10069
|
-
"integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==",
|
|
10070
|
-
"requires": {
|
|
10071
|
-
"colors": "1.0.3"
|
|
10072
|
-
}
|
|
10145
|
+
"version": "3.0.1",
|
|
10146
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
|
|
10147
|
+
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="
|
|
10073
10148
|
},
|
|
10074
10149
|
"cliui": {
|
|
10075
10150
|
"version": "4.1.0",
|
|
@@ -10081,11 +10156,6 @@
|
|
|
10081
10156
|
"wrap-ansi": "^2.0.0"
|
|
10082
10157
|
}
|
|
10083
10158
|
},
|
|
10084
|
-
"colors": {
|
|
10085
|
-
"version": "1.0.3",
|
|
10086
|
-
"resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
|
|
10087
|
-
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
|
|
10088
|
-
},
|
|
10089
10159
|
"find-up": {
|
|
10090
10160
|
"version": "3.0.0",
|
|
10091
10161
|
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
|
|
@@ -10104,6 +10174,11 @@
|
|
|
10104
10174
|
"resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz",
|
|
10105
10175
|
"integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA=="
|
|
10106
10176
|
},
|
|
10177
|
+
"ip": {
|
|
10178
|
+
"version": "1.1.8",
|
|
10179
|
+
"resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz",
|
|
10180
|
+
"integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg=="
|
|
10181
|
+
},
|
|
10107
10182
|
"is-fullwidth-code-point": {
|
|
10108
10183
|
"version": "2.0.0",
|
|
10109
10184
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
|
@@ -10319,6 +10394,16 @@
|
|
|
10319
10394
|
}
|
|
10320
10395
|
}
|
|
10321
10396
|
},
|
|
10397
|
+
"loader-utils": {
|
|
10398
|
+
"version": "2.0.2",
|
|
10399
|
+
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz",
|
|
10400
|
+
"integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==",
|
|
10401
|
+
"requires": {
|
|
10402
|
+
"big.js": "^5.2.2",
|
|
10403
|
+
"emojis-list": "^3.0.0",
|
|
10404
|
+
"json5": "^2.1.2"
|
|
10405
|
+
}
|
|
10406
|
+
},
|
|
10322
10407
|
"localtunnel": {
|
|
10323
10408
|
"version": "1.9.2",
|
|
10324
10409
|
"resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-1.9.2.tgz",
|
|
@@ -10661,6 +10746,12 @@
|
|
|
10661
10746
|
"integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
|
|
10662
10747
|
"dev": true
|
|
10663
10748
|
},
|
|
10749
|
+
"map-values": {
|
|
10750
|
+
"version": "1.0.1",
|
|
10751
|
+
"resolved": "https://registry.npmjs.org/map-values/-/map-values-1.0.1.tgz",
|
|
10752
|
+
"integrity": "sha1-douOecAJvytk/ugG4ip7HEGQyZA=",
|
|
10753
|
+
"dev": true
|
|
10754
|
+
},
|
|
10664
10755
|
"map-visit": {
|
|
10665
10756
|
"version": "1.0.0",
|
|
10666
10757
|
"resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
|
|
@@ -10687,6 +10778,15 @@
|
|
|
10687
10778
|
}
|
|
10688
10779
|
}
|
|
10689
10780
|
},
|
|
10781
|
+
"memory-fs": {
|
|
10782
|
+
"version": "0.5.0",
|
|
10783
|
+
"resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
|
|
10784
|
+
"integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
|
|
10785
|
+
"requires": {
|
|
10786
|
+
"errno": "^0.1.3",
|
|
10787
|
+
"readable-stream": "^2.0.1"
|
|
10788
|
+
}
|
|
10789
|
+
},
|
|
10690
10790
|
"merge-stream": {
|
|
10691
10791
|
"version": "2.0.0",
|
|
10692
10792
|
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
|
|
@@ -10765,9 +10865,9 @@
|
|
|
10765
10865
|
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
|
10766
10866
|
},
|
|
10767
10867
|
"minipass": {
|
|
10768
|
-
"version": "3.1.
|
|
10769
|
-
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.
|
|
10770
|
-
"integrity": "sha512
|
|
10868
|
+
"version": "3.1.6",
|
|
10869
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz",
|
|
10870
|
+
"integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==",
|
|
10771
10871
|
"requires": {
|
|
10772
10872
|
"yallist": "^4.0.0"
|
|
10773
10873
|
}
|
|
@@ -10808,11 +10908,18 @@
|
|
|
10808
10908
|
"integrity": "sha1-JMXb4m2jqZ7xWKHu+aXC3Z3laDw="
|
|
10809
10909
|
},
|
|
10810
10910
|
"mkdirp": {
|
|
10811
|
-
"version": "0.5.
|
|
10812
|
-
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.
|
|
10813
|
-
"integrity": "sha512-
|
|
10911
|
+
"version": "0.5.6",
|
|
10912
|
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
|
|
10913
|
+
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
|
|
10814
10914
|
"requires": {
|
|
10815
|
-
"minimist": "^1.2.
|
|
10915
|
+
"minimist": "^1.2.6"
|
|
10916
|
+
},
|
|
10917
|
+
"dependencies": {
|
|
10918
|
+
"minimist": {
|
|
10919
|
+
"version": "1.2.6",
|
|
10920
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
|
|
10921
|
+
"integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
|
|
10922
|
+
}
|
|
10816
10923
|
}
|
|
10817
10924
|
},
|
|
10818
10925
|
"mkdirp-classic": {
|
|
@@ -11067,6 +11174,12 @@
|
|
|
11067
11174
|
}
|
|
11068
11175
|
}
|
|
11069
11176
|
},
|
|
11177
|
+
"object-filter": {
|
|
11178
|
+
"version": "1.0.2",
|
|
11179
|
+
"resolved": "https://registry.npmjs.org/object-filter/-/object-filter-1.0.2.tgz",
|
|
11180
|
+
"integrity": "sha1-rwt5f/6+r4pSxmN87b6IFs/sG8g=",
|
|
11181
|
+
"dev": true
|
|
11182
|
+
},
|
|
11070
11183
|
"object-hash": {
|
|
11071
11184
|
"version": "1.3.1",
|
|
11072
11185
|
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz",
|
|
@@ -11715,9 +11828,9 @@
|
|
|
11715
11828
|
}
|
|
11716
11829
|
},
|
|
11717
11830
|
"platformsh-client": {
|
|
11718
|
-
"version": "0.1.
|
|
11719
|
-
"resolved": "https://registry.npmjs.org/platformsh-client/-/platformsh-client-0.1.
|
|
11720
|
-
"integrity": "sha512-
|
|
11831
|
+
"version": "0.1.201",
|
|
11832
|
+
"resolved": "https://registry.npmjs.org/platformsh-client/-/platformsh-client-0.1.201.tgz",
|
|
11833
|
+
"integrity": "sha512-HZbuxDYJRfe+sJhoIy2qO9B7Vu53jVCl9N1vzqG79KcRg7QyqRGiJun12sT/M/eo8O53SwwHQh1uYPCgg6t0OA==",
|
|
11721
11834
|
"requires": {
|
|
11722
11835
|
"atob": "^2.1.2",
|
|
11723
11836
|
"basename": "^0.1.2",
|
|
@@ -11726,12 +11839,13 @@
|
|
|
11726
11839
|
"es6-promise": "4.2.6",
|
|
11727
11840
|
"is-scalar": "^1.0.2",
|
|
11728
11841
|
"is-url": "^1.2.2",
|
|
11729
|
-
"isomorphic-fetch": "^
|
|
11842
|
+
"isomorphic-fetch": "^3.0.0",
|
|
11730
11843
|
"oauth2-popup-flow": "^1.1.0",
|
|
11731
11844
|
"object.pick": "^1.3.0",
|
|
11732
11845
|
"parse_url": "^0.1.1",
|
|
11733
11846
|
"slugify": "^1.3.4",
|
|
11734
|
-
"to-querystring": "^1.1.
|
|
11847
|
+
"to-querystring": "^1.1.3",
|
|
11848
|
+
"ts-loader": "~8.2.0",
|
|
11735
11849
|
"url-pattern": "^1.0.3"
|
|
11736
11850
|
}
|
|
11737
11851
|
},
|
|
@@ -11857,6 +11971,16 @@
|
|
|
11857
11971
|
"integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==",
|
|
11858
11972
|
"dev": true
|
|
11859
11973
|
},
|
|
11974
|
+
"proxy-from-env": {
|
|
11975
|
+
"version": "1.1.0",
|
|
11976
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
|
11977
|
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
|
|
11978
|
+
},
|
|
11979
|
+
"prr": {
|
|
11980
|
+
"version": "1.0.1",
|
|
11981
|
+
"resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
|
|
11982
|
+
"integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY="
|
|
11983
|
+
},
|
|
11860
11984
|
"pseudomap": {
|
|
11861
11985
|
"version": "1.0.2",
|
|
11862
11986
|
"resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
|
|
@@ -12565,9 +12689,9 @@
|
|
|
12565
12689
|
"dev": true
|
|
12566
12690
|
},
|
|
12567
12691
|
"shelljs": {
|
|
12568
|
-
"version": "0.8.
|
|
12569
|
-
"resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.
|
|
12570
|
-
"integrity": "sha512-
|
|
12692
|
+
"version": "0.8.5",
|
|
12693
|
+
"resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz",
|
|
12694
|
+
"integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==",
|
|
12571
12695
|
"requires": {
|
|
12572
12696
|
"glob": "^7.0.0",
|
|
12573
12697
|
"interpret": "^1.0.0",
|
|
@@ -12684,14 +12808,14 @@
|
|
|
12684
12808
|
}
|
|
12685
12809
|
},
|
|
12686
12810
|
"slugify": {
|
|
12687
|
-
"version": "1.6.
|
|
12688
|
-
"resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.
|
|
12689
|
-
"integrity": "sha512-
|
|
12811
|
+
"version": "1.6.5",
|
|
12812
|
+
"resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz",
|
|
12813
|
+
"integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ=="
|
|
12690
12814
|
},
|
|
12691
12815
|
"smart-buffer": {
|
|
12692
|
-
"version": "4.
|
|
12693
|
-
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.
|
|
12694
|
-
"integrity": "sha512-
|
|
12816
|
+
"version": "4.2.0",
|
|
12817
|
+
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
|
|
12818
|
+
"integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="
|
|
12695
12819
|
},
|
|
12696
12820
|
"snapdragon": {
|
|
12697
12821
|
"version": "0.8.2",
|
|
@@ -12868,20 +12992,20 @@
|
|
|
12868
12992
|
}
|
|
12869
12993
|
},
|
|
12870
12994
|
"socks": {
|
|
12871
|
-
"version": "2.
|
|
12872
|
-
"resolved": "https://registry.npmjs.org/socks/-/socks-2.
|
|
12873
|
-
"integrity": "sha512-
|
|
12995
|
+
"version": "2.6.2",
|
|
12996
|
+
"resolved": "https://registry.npmjs.org/socks/-/socks-2.6.2.tgz",
|
|
12997
|
+
"integrity": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==",
|
|
12874
12998
|
"requires": {
|
|
12875
12999
|
"ip": "^1.1.5",
|
|
12876
|
-
"smart-buffer": "^4.
|
|
13000
|
+
"smart-buffer": "^4.2.0"
|
|
12877
13001
|
}
|
|
12878
13002
|
},
|
|
12879
13003
|
"socks-proxy-agent": {
|
|
12880
|
-
"version": "5.0.
|
|
12881
|
-
"resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.
|
|
12882
|
-
"integrity": "sha512-
|
|
13004
|
+
"version": "5.0.1",
|
|
13005
|
+
"resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz",
|
|
13006
|
+
"integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==",
|
|
12883
13007
|
"requires": {
|
|
12884
|
-
"agent-base": "6",
|
|
13008
|
+
"agent-base": "^6.0.2",
|
|
12885
13009
|
"debug": "4",
|
|
12886
13010
|
"socks": "^2.3.3"
|
|
12887
13011
|
}
|
|
@@ -13391,6 +13515,11 @@
|
|
|
13391
13515
|
}
|
|
13392
13516
|
}
|
|
13393
13517
|
},
|
|
13518
|
+
"tapable": {
|
|
13519
|
+
"version": "1.1.3",
|
|
13520
|
+
"resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
|
|
13521
|
+
"integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA=="
|
|
13522
|
+
},
|
|
13394
13523
|
"tar": {
|
|
13395
13524
|
"version": "6.1.11",
|
|
13396
13525
|
"resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz",
|
|
@@ -13566,9 +13695,9 @@
|
|
|
13566
13695
|
}
|
|
13567
13696
|
},
|
|
13568
13697
|
"to-querystring": {
|
|
13569
|
-
"version": "1.1.
|
|
13570
|
-
"resolved": "https://registry.npmjs.org/to-querystring/-/to-querystring-1.1.
|
|
13571
|
-
"integrity": "sha512-
|
|
13698
|
+
"version": "1.1.3",
|
|
13699
|
+
"resolved": "https://registry.npmjs.org/to-querystring/-/to-querystring-1.1.3.tgz",
|
|
13700
|
+
"integrity": "sha512-nmSfnA99kBsT3pr8lkXCgvmeoF2GVWecGzpMP5u4msKYd05c4u4G/Q5MKk4wgcjH1Pd/KgPIkdIC7BBNDZmSpQ=="
|
|
13572
13701
|
},
|
|
13573
13702
|
"to-readable-stream": {
|
|
13574
13703
|
"version": "1.0.0",
|
|
@@ -13631,6 +13760,63 @@
|
|
|
13631
13760
|
"integrity": "sha1-YdvC1Ttp/2CRoSoWj9fUMxB+QPE=",
|
|
13632
13761
|
"optional": true
|
|
13633
13762
|
},
|
|
13763
|
+
"ts-loader": {
|
|
13764
|
+
"version": "8.2.0",
|
|
13765
|
+
"resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.2.0.tgz",
|
|
13766
|
+
"integrity": "sha512-ebXBFrNyMSmbWgjnb3WBloUBK+VSx1xckaXsMXxlZRDqce/OPdYBVN5efB0W3V0defq0Gcy4YuzvPGqRgjj85A==",
|
|
13767
|
+
"requires": {
|
|
13768
|
+
"chalk": "^4.1.0",
|
|
13769
|
+
"enhanced-resolve": "^4.0.0",
|
|
13770
|
+
"loader-utils": "^2.0.0",
|
|
13771
|
+
"micromatch": "^4.0.0",
|
|
13772
|
+
"semver": "^7.3.4"
|
|
13773
|
+
},
|
|
13774
|
+
"dependencies": {
|
|
13775
|
+
"braces": {
|
|
13776
|
+
"version": "3.0.2",
|
|
13777
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
|
13778
|
+
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
|
13779
|
+
"requires": {
|
|
13780
|
+
"fill-range": "^7.0.1"
|
|
13781
|
+
}
|
|
13782
|
+
},
|
|
13783
|
+
"fill-range": {
|
|
13784
|
+
"version": "7.0.1",
|
|
13785
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
|
13786
|
+
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
|
13787
|
+
"requires": {
|
|
13788
|
+
"to-regex-range": "^5.0.1"
|
|
13789
|
+
}
|
|
13790
|
+
},
|
|
13791
|
+
"is-number": {
|
|
13792
|
+
"version": "7.0.0",
|
|
13793
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
13794
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
|
|
13795
|
+
},
|
|
13796
|
+
"micromatch": {
|
|
13797
|
+
"version": "4.0.5",
|
|
13798
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
|
|
13799
|
+
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
|
|
13800
|
+
"requires": {
|
|
13801
|
+
"braces": "^3.0.2",
|
|
13802
|
+
"picomatch": "^2.3.1"
|
|
13803
|
+
}
|
|
13804
|
+
},
|
|
13805
|
+
"picomatch": {
|
|
13806
|
+
"version": "2.3.1",
|
|
13807
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
13808
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
|
|
13809
|
+
},
|
|
13810
|
+
"to-regex-range": {
|
|
13811
|
+
"version": "5.0.1",
|
|
13812
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
13813
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
13814
|
+
"requires": {
|
|
13815
|
+
"is-number": "^7.0.0"
|
|
13816
|
+
}
|
|
13817
|
+
}
|
|
13818
|
+
}
|
|
13819
|
+
},
|
|
13634
13820
|
"tsconfig-paths": {
|
|
13635
13821
|
"version": "3.9.0",
|
|
13636
13822
|
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "The VIP Javascript library & CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -44,17 +44,15 @@
|
|
|
44
44
|
"test": "npm run lint && npm run flow && jest --coverage",
|
|
45
45
|
"clean": "rimraf dist",
|
|
46
46
|
"prepare": "npm run clean && npm run build",
|
|
47
|
-
"prepack": "npm run prepareConfig:publish",
|
|
48
47
|
"postinstall": "node ./helpers/check-version.js",
|
|
49
|
-
"build": "
|
|
48
|
+
"build": "babel src -d dist",
|
|
50
49
|
"build:watch": "babel src -d dist --watch",
|
|
51
50
|
"flow": "flow",
|
|
52
51
|
"jest": "jest",
|
|
53
52
|
"lint": "eslint index.js src __tests__",
|
|
54
|
-
"prepareConfig:local": "node ./helpers/prepare-config.js local",
|
|
55
|
-
"prepareConfig:publish": "node ./helpers/prepare-config.js publish",
|
|
56
53
|
"publish-please": "publish-please",
|
|
57
|
-
"prepublishOnly": "publish-please guard"
|
|
54
|
+
"prepublishOnly": "publish-please guard",
|
|
55
|
+
"prePublishScript": "check-node-version --package && npm test"
|
|
58
56
|
},
|
|
59
57
|
"repository": {
|
|
60
58
|
"type": "git",
|
|
@@ -71,7 +69,8 @@
|
|
|
71
69
|
],
|
|
72
70
|
"license": "MIT",
|
|
73
71
|
"engines": {
|
|
74
|
-
"node": ">=14.14.0"
|
|
72
|
+
"node": ">=14.14.0",
|
|
73
|
+
"npm": "^6 "
|
|
75
74
|
},
|
|
76
75
|
"bugs": {
|
|
77
76
|
"url": "https://github.com/Automattic/vip/issues"
|
|
@@ -87,6 +86,7 @@
|
|
|
87
86
|
"babel-core": "7.0.0-bridge.0",
|
|
88
87
|
"babel-jest": "26.6.3",
|
|
89
88
|
"babel-plugin-module-resolver": "4.1.0",
|
|
89
|
+
"check-node-version": "^4.2.1",
|
|
90
90
|
"eslint": "7.32.0",
|
|
91
91
|
"eslint-config-wpvip": "github:automattic/eslint-config-wpvip#c6605d1",
|
|
92
92
|
"eslint-plugin-flowtype": "5.7.2",
|
|
@@ -117,18 +117,21 @@
|
|
|
117
117
|
"enquirer": "2.3.6",
|
|
118
118
|
"graphql": "15.5.1",
|
|
119
119
|
"graphql-tag": "2.12.5",
|
|
120
|
+
"http-proxy-agent": "^5.0.0",
|
|
121
|
+
"https-proxy-agent": "^5.0.1",
|
|
120
122
|
"ini": "2.0.0",
|
|
121
123
|
"json2csv": "5.0.6",
|
|
122
124
|
"jwt-decode": "2.2.0",
|
|
123
|
-
"lando": "git+https://github.com/Automattic/lando-cli.git#v3.5.
|
|
125
|
+
"lando": "git+https://github.com/Automattic/lando-cli.git#v3.5.2-patch2022_05_13",
|
|
124
126
|
"node-fetch": "^2.6.1",
|
|
125
127
|
"opn": "5.5.0",
|
|
128
|
+
"proxy-from-env": "^1.1.0",
|
|
126
129
|
"rollbar": "2.22.0",
|
|
127
130
|
"semver": "7.3.5",
|
|
128
131
|
"single-line-log": "1.1.2",
|
|
129
132
|
"socket.io-client": "4.4.1",
|
|
130
133
|
"socket.io-stream": "0.9.1",
|
|
131
|
-
"socks-proxy-agent": "^5.0.
|
|
134
|
+
"socks-proxy-agent": "^5.0.1",
|
|
132
135
|
"update-notifier": "4.1.3",
|
|
133
136
|
"uuid": "8.3.2",
|
|
134
137
|
"xdg-basedir": "^4.0.0",
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = createSocksProxyAgent;
|
|
7
|
-
|
|
8
|
-
var _socksProxyAgent = _interopRequireDefault(require("socks-proxy-agent"));
|
|
9
|
-
|
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* External dependencies
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* Internal dependencies
|
|
18
|
-
*/
|
|
19
|
-
function createSocksProxyAgent() {
|
|
20
|
-
if (!process.env.VIP_PROXY) {
|
|
21
|
-
return null;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
return new _socksProxyAgent.default(process.env.VIP_PROXY);
|
|
25
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
const fs = require( 'fs' );
|
|
2
|
-
|
|
3
|
-
const environment = process.argv[ 2 ] || 'local';
|
|
4
|
-
|
|
5
|
-
const srcFile = `config/config.${ environment }.json`;
|
|
6
|
-
const destFile = 'config/config.json';
|
|
7
|
-
|
|
8
|
-
// If the file is not there, we shouldn't bother
|
|
9
|
-
const srcExists = fs.existsSync( srcFile );
|
|
10
|
-
if ( ! srcExists ) {
|
|
11
|
-
console.log( `prepareConfig: source file (${ srcFile }) not found; skipping` );
|
|
12
|
-
process.exit( 0 );
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
console.log( `prepareConfig: ${ srcFile } => ${ destFile }` );
|
|
16
|
-
|
|
17
|
-
// Can't use fs.copyFileSync as it's 8.5+
|
|
18
|
-
const srcContents = fs.readFileSync( srcFile );
|
|
19
|
-
fs.writeFileSync( destFile, srcContents );
|
package/vip.iml
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
-
<exclude-output />
|
|
5
|
-
<content url="file://$MODULE_DIR$">
|
|
6
|
-
<sourceFolder url="file://$MODULE_DIR$/__tests__" isTestSource="true" />
|
|
7
|
-
<excludeFolder url="file://$MODULE_DIR$/dist" />
|
|
8
|
-
</content>
|
|
9
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
10
|
-
</component>
|
|
11
|
-
</module>
|