@automattic/vip 2.36.0 → 2.36.2-dev.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/CHANGELOG.md +4 -0
- package/dist/bin/vip-db-phpmyadmin.js +53 -0
- package/dist/bin/vip-db.js +19 -0
- package/dist/bin/vip-dev-env-import-sql.js +8 -2
- package/dist/bin/vip-dev-env-update.js +1 -1
- package/dist/bin/vip.js +1 -1
- package/dist/commands/dev-env-import-sql.js +0 -1
- package/dist/commands/phpmyadmin.js +89 -0
- package/dist/lib/cli/format.js +2 -2
- package/npm-shrinkwrap.json +175 -160
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* External dependencies
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Internal dependencies
|
|
9
|
+
*/
|
|
10
|
+
"use strict";
|
|
11
|
+
|
|
12
|
+
var _phpmyadmin = require("../commands/phpmyadmin");
|
|
13
|
+
var _command = _interopRequireDefault(require("../lib/cli/command"));
|
|
14
|
+
var _tracker = require("../lib/tracker");
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
16
|
+
const examples = [{
|
|
17
|
+
usage: 'vip db phpmyadmin @mysite.develop',
|
|
18
|
+
description: 'Open PhpMyAdmin console for the database of the @mysite.develop environment'
|
|
19
|
+
}];
|
|
20
|
+
const appQuery = `
|
|
21
|
+
id,
|
|
22
|
+
name,
|
|
23
|
+
type,
|
|
24
|
+
organization { id, name },
|
|
25
|
+
environments{
|
|
26
|
+
id
|
|
27
|
+
appId
|
|
28
|
+
type
|
|
29
|
+
name
|
|
30
|
+
primaryDomain { name }
|
|
31
|
+
uniqueLabel
|
|
32
|
+
}
|
|
33
|
+
`;
|
|
34
|
+
void (0, _command.default)({
|
|
35
|
+
appContext: true,
|
|
36
|
+
appQuery,
|
|
37
|
+
envContext: true,
|
|
38
|
+
module: 'phpmyadmin',
|
|
39
|
+
requiredArgs: 0,
|
|
40
|
+
usage: 'vip db phpmyadmin'
|
|
41
|
+
}).examples(examples).argv(process.argv, async (arg, {
|
|
42
|
+
app,
|
|
43
|
+
env
|
|
44
|
+
}) => {
|
|
45
|
+
const trackerFn = (0, _tracker.makeCommandTracker)('phpmyadmin', {
|
|
46
|
+
app: app.id,
|
|
47
|
+
env: env.uniqueLabel
|
|
48
|
+
});
|
|
49
|
+
await trackerFn('execute');
|
|
50
|
+
const cmd = new _phpmyadmin.PhpMyAdminCommand(app, env, trackerFn);
|
|
51
|
+
await cmd.run();
|
|
52
|
+
await trackerFn('success');
|
|
53
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* External dependencies
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Internal dependencies
|
|
9
|
+
*/
|
|
10
|
+
"use strict";
|
|
11
|
+
|
|
12
|
+
var _command = _interopRequireDefault(require("../lib/cli/command"));
|
|
13
|
+
var _tracker = require("../lib/tracker");
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
void (0, _command.default)({
|
|
16
|
+
usage: 'vip db'
|
|
17
|
+
}).command('phpmyadmin', 'Open PhpMyAdmin console for your application database').example('vip db phpmyadmin @mysite.develop', 'Open PhpMyAdmin console for your database of the @mysite.develop environment').argv(process.argv, async () => {
|
|
18
|
+
await (0, _tracker.trackEvent)('vip_db_command_execute');
|
|
19
|
+
});
|
|
@@ -27,11 +27,17 @@ const examples = [{
|
|
|
27
27
|
const slug = await (0, _devEnvironmentCli.getEnvironmentName)(opt);
|
|
28
28
|
const cmd = new _devEnvImportSql.DevEnvImportSQLCommand(fileName, opt, slug);
|
|
29
29
|
const trackingInfo = (0, _devEnvironmentCli.getEnvTrackingInfo)(cmd.slug);
|
|
30
|
+
const trackerFn = (0, _tracker.makeCommandTracker)('dev_env_import_sql', trackingInfo);
|
|
31
|
+
await trackerFn('execute');
|
|
30
32
|
try {
|
|
31
33
|
await cmd.run();
|
|
32
|
-
await (
|
|
34
|
+
await trackerFn('success');
|
|
33
35
|
} catch (error) {
|
|
34
|
-
await (0, _devEnvironmentCli.handleCLIException)(error
|
|
36
|
+
await (0, _devEnvironmentCli.handleCLIException)(error);
|
|
37
|
+
await trackerFn('error', {
|
|
38
|
+
message: error.message,
|
|
39
|
+
stack: error.stack
|
|
40
|
+
});
|
|
35
41
|
process.exitCode = 1;
|
|
36
42
|
}
|
|
37
43
|
});
|
|
@@ -67,7 +67,7 @@ cmd.argv(process.argv, async (arg, opt) => {
|
|
|
67
67
|
const instanceData = await (0, _devEnvironmentCli.promptForArguments)(finalPreselectedOptions, defaultOptions, suppressPrompts);
|
|
68
68
|
instanceData.siteSlug = slug;
|
|
69
69
|
await (0, _devEnvironmentCore.updateEnvironment)(instanceData);
|
|
70
|
-
const message = '\n' + _chalk.default.green('✓') + ' environment updated. Please start environment again for changes to take effect: ' + _chalk.default.bold(`vip dev
|
|
70
|
+
const message = '\n' + _chalk.default.green('✓') + ' environment updated. Please start environment again for changes to take effect: ' + _chalk.default.bold(`vip dev-env --slug ${slug} start`);
|
|
71
71
|
console.log(message);
|
|
72
72
|
await (0, _tracker.trackEvent)('dev_env_update_command_success', trackingInfo);
|
|
73
73
|
} catch (error) {
|
package/dist/bin/vip.js
CHANGED
|
@@ -22,7 +22,7 @@ if (_config.default && _config.default.environment !== 'production') {
|
|
|
22
22
|
const tokenURL = 'https://dashboard.wpvip.com/me/cli/token';
|
|
23
23
|
const runCmd = async function () {
|
|
24
24
|
const cmd = (0, _command.default)();
|
|
25
|
-
cmd.command('logout', 'Logout from your current session').command('app', 'List and modify your VIP applications').command('backup', 'Generate a backup for VIP applications').command('cache', 'Manage page cache for your VIP applications').command('config', 'Set configuration for your VIP applications').command('dev-env', 'Use local dev-environment').command('export', 'Export data from your VIP application').command('import', 'Import media or SQL files into your VIP applications').command('logs', 'Get logs from your VIP applications').command('search-replace', 'Perform search and replace tasks on files').command('slowlogs', 'Get slowlogs from your VIP applications').command('sync', 'Sync production to a development environment').command('whoami', 'Display details about the currently logged-in user').command('validate', 'Validate your VIP application and environment').command('wp', 'Run WP CLI commands against an environment');
|
|
25
|
+
cmd.command('logout', 'Logout from your current session').command('app', 'List and modify your VIP applications').command('backup', 'Generate a backup for VIP applications').command('cache', 'Manage page cache for your VIP applications').command('config', 'Set configuration for your VIP applications').command('dev-env', 'Use local dev-environment').command('export', 'Export data from your VIP application').command('import', 'Import media or SQL files into your VIP applications').command('logs', 'Get logs from your VIP applications').command('search-replace', 'Perform search and replace tasks on files').command('slowlogs', 'Get slowlogs from your VIP applications').command('db', 'Run operations on your VIP application database').command('sync', 'Sync production to a development environment').command('whoami', 'Display details about the currently logged-in user').command('validate', 'Validate your VIP application and environment').command('wp', 'Run WP CLI commands against an environment');
|
|
26
26
|
cmd.argv(process.argv);
|
|
27
27
|
};
|
|
28
28
|
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.PhpMyAdminCommand = exports.GENERATE_PHP_MY_ADMIN_URL_MUTATION = void 0;
|
|
5
|
+
var _graphqlTag = _interopRequireDefault(require("graphql-tag"));
|
|
6
|
+
var _opn = _interopRequireDefault(require("opn"));
|
|
7
|
+
var _api = _interopRequireWildcard(require("../lib/api"));
|
|
8
|
+
var exit = _interopRequireWildcard(require("../lib/cli/exit"));
|
|
9
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
10
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
12
|
+
/**
|
|
13
|
+
* External dependencies
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Internal dependencies
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
const GENERATE_PHP_MY_ADMIN_URL_MUTATION = exports.GENERATE_PHP_MY_ADMIN_URL_MUTATION = (0, _graphqlTag.default)`
|
|
21
|
+
mutation GeneratePhpMyAdminAccess($input: GeneratePhpMyAdminAccessInput) {
|
|
22
|
+
generatePHPMyAdminAccess(input: $input) {
|
|
23
|
+
expiresAt
|
|
24
|
+
url
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
`;
|
|
28
|
+
async function generatePhpMyAdminAccess(envId) {
|
|
29
|
+
// Disable global error handling so that we can handle errors ourselves
|
|
30
|
+
(0, _api.disableGlobalGraphQLErrorHandling)();
|
|
31
|
+
const api = await (0, _api.default)();
|
|
32
|
+
const resp = await api.mutate({
|
|
33
|
+
mutation: GENERATE_PHP_MY_ADMIN_URL_MUTATION,
|
|
34
|
+
variables: {
|
|
35
|
+
input: {
|
|
36
|
+
environmentId: envId
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
// Re-enable global error handling
|
|
42
|
+
(0, _api.enableGlobalGraphQLErrorHandling)();
|
|
43
|
+
|
|
44
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
45
|
+
return resp?.data?.generatePHPMyAdminAccess?.url;
|
|
46
|
+
}
|
|
47
|
+
class PhpMyAdminCommand {
|
|
48
|
+
app;
|
|
49
|
+
env;
|
|
50
|
+
silent;
|
|
51
|
+
track;
|
|
52
|
+
constructor(app, env, trackerFn = async () => {}) {
|
|
53
|
+
this.app = app;
|
|
54
|
+
this.env = env;
|
|
55
|
+
this.track = trackerFn;
|
|
56
|
+
}
|
|
57
|
+
log(msg) {
|
|
58
|
+
if (this.silent) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
console.log(msg);
|
|
62
|
+
}
|
|
63
|
+
async run(silent = false) {
|
|
64
|
+
this.silent = silent;
|
|
65
|
+
if (!this.env.id) {
|
|
66
|
+
exit.withError('No environment was specified');
|
|
67
|
+
}
|
|
68
|
+
this.log('Generating PhpMyAdmin URL...');
|
|
69
|
+
let url;
|
|
70
|
+
try {
|
|
71
|
+
url = await generatePhpMyAdminAccess(this.env.id);
|
|
72
|
+
} catch (err) {
|
|
73
|
+
const error = err;
|
|
74
|
+
void this.track('error', {
|
|
75
|
+
error_type: 'generate_pma_url',
|
|
76
|
+
error_message: error.message,
|
|
77
|
+
stack: error.stack
|
|
78
|
+
});
|
|
79
|
+
exit.withError(`Failed to generate PhpMyAdmin URL: ${error.message}`);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
|
83
|
+
void (0, _opn.default)(url, {
|
|
84
|
+
wait: false
|
|
85
|
+
});
|
|
86
|
+
this.log('PhpMyAdmin is opened in your default browser.');
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.PhpMyAdminCommand = PhpMyAdminCommand;
|
package/dist/lib/cli/format.js
CHANGED
|
@@ -17,7 +17,7 @@ exports.requoteArgs = requoteArgs;
|
|
|
17
17
|
exports.table = table;
|
|
18
18
|
var _plainjs = require("@json2csv/plainjs");
|
|
19
19
|
var _chalk = _interopRequireDefault(require("chalk"));
|
|
20
|
-
var _cliTable = _interopRequireDefault(require("cli-
|
|
20
|
+
var _cliTable = _interopRequireDefault(require("cli-table3"));
|
|
21
21
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22
22
|
function formatData(data, format) {
|
|
23
23
|
if (!data.length) {
|
|
@@ -63,7 +63,7 @@ function table(data) {
|
|
|
63
63
|
const dataTable = new _cliTable.default({
|
|
64
64
|
head: formatFields(fields),
|
|
65
65
|
style: {
|
|
66
|
-
head: ['
|
|
66
|
+
head: ['brightBlue']
|
|
67
67
|
}
|
|
68
68
|
});
|
|
69
69
|
data.forEach(datum => {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.36.0",
|
|
3
|
+
"version": "2.36.2-dev.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@automattic/vip",
|
|
9
|
-
"version": "2.36.0",
|
|
9
|
+
"version": "2.36.2-dev.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"chalk": "4.1.2",
|
|
19
19
|
"check-disk-space": "3.4.0",
|
|
20
20
|
"cli-columns": "^4.0.0",
|
|
21
|
-
"cli-
|
|
21
|
+
"cli-table3": "^0.6.3",
|
|
22
22
|
"configstore": "5.0.1",
|
|
23
23
|
"copy-dir": "0.4.0",
|
|
24
24
|
"debug": "4.3.4",
|
|
@@ -64,6 +64,8 @@
|
|
|
64
64
|
"vip-config-software": "dist/bin/vip-config-software.js",
|
|
65
65
|
"vip-config-software-get": "dist/bin/vip-config-software-get.js",
|
|
66
66
|
"vip-config-software-update": "dist/bin/vip-config-software-update.js",
|
|
67
|
+
"vip-db": "dist/bin/vip-db.js",
|
|
68
|
+
"vip-db-phpmyadmin": "dist/bin/vip-db-phpmyadmin.js",
|
|
67
69
|
"vip-dev-env": "dist/bin/vip-dev-env.js",
|
|
68
70
|
"vip-dev-env-create": "dist/bin/vip-dev-env-create.js",
|
|
69
71
|
"vip-dev-env-destroy": "dist/bin/vip-dev-env-destroy.js",
|
|
@@ -2358,6 +2360,15 @@
|
|
|
2358
2360
|
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
|
|
2359
2361
|
"dev": true
|
|
2360
2362
|
},
|
|
2363
|
+
"node_modules/@colors/colors": {
|
|
2364
|
+
"version": "1.5.0",
|
|
2365
|
+
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
2366
|
+
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
|
|
2367
|
+
"optional": true,
|
|
2368
|
+
"engines": {
|
|
2369
|
+
"node": ">=0.1.90"
|
|
2370
|
+
}
|
|
2371
|
+
},
|
|
2361
2372
|
"node_modules/@es-joy/jsdoccomment": {
|
|
2362
2373
|
"version": "0.40.1",
|
|
2363
2374
|
"resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.40.1.tgz",
|
|
@@ -5203,93 +5214,58 @@
|
|
|
5203
5214
|
"node": ">=4"
|
|
5204
5215
|
}
|
|
5205
5216
|
},
|
|
5206
|
-
"node_modules/cli-table": {
|
|
5207
|
-
"version": "0.3.1",
|
|
5208
|
-
"resolved": "git+ssh://git@github.com/automattic/cli-table.git#7b14232ba779929e1859b267bf753c150d90a618",
|
|
5209
|
-
"integrity": "sha512-cgJEeZsoWrjcWTk0F4ycOIQku5HZYSG0qgHmg1t5y9zIn0IeOgKDq/3eaUfgtUWtLiTBIDQXMDtInaYTGMuxKQ==",
|
|
5210
|
-
"license": "MIT",
|
|
5211
|
-
"dependencies": {
|
|
5212
|
-
"chalk": "^2.4.1",
|
|
5213
|
-
"wcwidth": "^1.0.1"
|
|
5214
|
-
},
|
|
5215
|
-
"engines": {
|
|
5216
|
-
"node": ">= 7.5.0"
|
|
5217
|
-
}
|
|
5218
|
-
},
|
|
5219
|
-
"node_modules/cli-table/node_modules/chalk": {
|
|
5220
|
-
"version": "2.4.2",
|
|
5221
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
|
5222
|
-
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
|
5223
|
-
"dependencies": {
|
|
5224
|
-
"ansi-styles": "^3.2.1",
|
|
5225
|
-
"escape-string-regexp": "^1.0.5",
|
|
5226
|
-
"supports-color": "^5.3.0"
|
|
5227
|
-
},
|
|
5228
|
-
"engines": {
|
|
5229
|
-
"node": ">=4"
|
|
5230
|
-
}
|
|
5231
|
-
},
|
|
5232
5217
|
"node_modules/cli-table3": {
|
|
5233
|
-
"version": "0.
|
|
5234
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.
|
|
5235
|
-
"integrity": "sha512-
|
|
5218
|
+
"version": "0.6.3",
|
|
5219
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz",
|
|
5220
|
+
"integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
|
|
5236
5221
|
"dependencies": {
|
|
5237
|
-
"
|
|
5238
|
-
"string-width": "^2.1.1"
|
|
5222
|
+
"string-width": "^4.2.0"
|
|
5239
5223
|
},
|
|
5240
5224
|
"engines": {
|
|
5241
|
-
"node": ">=
|
|
5225
|
+
"node": "10.* || >= 12.*"
|
|
5242
5226
|
},
|
|
5243
5227
|
"optionalDependencies": {
|
|
5244
|
-
"colors": "
|
|
5228
|
+
"@colors/colors": "1.5.0"
|
|
5245
5229
|
}
|
|
5246
5230
|
},
|
|
5247
5231
|
"node_modules/cli-table3/node_modules/ansi-regex": {
|
|
5248
|
-
"version": "
|
|
5249
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-
|
|
5250
|
-
"integrity": "sha512
|
|
5251
|
-
"engines": {
|
|
5252
|
-
"node": ">=4"
|
|
5253
|
-
}
|
|
5254
|
-
},
|
|
5255
|
-
"node_modules/cli-table3/node_modules/colors": {
|
|
5256
|
-
"version": "1.4.0",
|
|
5257
|
-
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
|
|
5258
|
-
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
|
|
5259
|
-
"optional": true,
|
|
5232
|
+
"version": "5.0.1",
|
|
5233
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
5234
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
5260
5235
|
"engines": {
|
|
5261
|
-
"node": ">=
|
|
5236
|
+
"node": ">=8"
|
|
5262
5237
|
}
|
|
5263
5238
|
},
|
|
5264
5239
|
"node_modules/cli-table3/node_modules/is-fullwidth-code-point": {
|
|
5265
|
-
"version": "
|
|
5266
|
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-
|
|
5267
|
-
"integrity": "sha512-
|
|
5240
|
+
"version": "3.0.0",
|
|
5241
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
5242
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
5268
5243
|
"engines": {
|
|
5269
|
-
"node": ">=
|
|
5244
|
+
"node": ">=8"
|
|
5270
5245
|
}
|
|
5271
5246
|
},
|
|
5272
5247
|
"node_modules/cli-table3/node_modules/string-width": {
|
|
5273
|
-
"version": "2.
|
|
5274
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.
|
|
5275
|
-
"integrity": "sha512-
|
|
5248
|
+
"version": "4.2.3",
|
|
5249
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
5250
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
5276
5251
|
"dependencies": {
|
|
5277
|
-
"
|
|
5278
|
-
"
|
|
5252
|
+
"emoji-regex": "^8.0.0",
|
|
5253
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
5254
|
+
"strip-ansi": "^6.0.1"
|
|
5279
5255
|
},
|
|
5280
5256
|
"engines": {
|
|
5281
|
-
"node": ">=
|
|
5257
|
+
"node": ">=8"
|
|
5282
5258
|
}
|
|
5283
5259
|
},
|
|
5284
5260
|
"node_modules/cli-table3/node_modules/strip-ansi": {
|
|
5285
|
-
"version": "
|
|
5286
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-
|
|
5287
|
-
"integrity": "sha512-
|
|
5261
|
+
"version": "6.0.1",
|
|
5262
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
5263
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
5288
5264
|
"dependencies": {
|
|
5289
|
-
"ansi-regex": "^
|
|
5265
|
+
"ansi-regex": "^5.0.1"
|
|
5290
5266
|
},
|
|
5291
5267
|
"engines": {
|
|
5292
|
-
"node": ">=
|
|
5268
|
+
"node": ">=8"
|
|
5293
5269
|
}
|
|
5294
5270
|
},
|
|
5295
5271
|
"node_modules/cli-width": {
|
|
@@ -5347,14 +5323,6 @@
|
|
|
5347
5323
|
"node": ">=8"
|
|
5348
5324
|
}
|
|
5349
5325
|
},
|
|
5350
|
-
"node_modules/clone": {
|
|
5351
|
-
"version": "1.0.4",
|
|
5352
|
-
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
|
|
5353
|
-
"integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
|
|
5354
|
-
"engines": {
|
|
5355
|
-
"node": ">=0.8"
|
|
5356
|
-
}
|
|
5357
|
-
},
|
|
5358
5326
|
"node_modules/co": {
|
|
5359
5327
|
"version": "4.6.0",
|
|
5360
5328
|
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
|
|
@@ -5722,17 +5690,6 @@
|
|
|
5722
5690
|
"node": ">=0.10.0"
|
|
5723
5691
|
}
|
|
5724
5692
|
},
|
|
5725
|
-
"node_modules/defaults": {
|
|
5726
|
-
"version": "1.0.4",
|
|
5727
|
-
"resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
|
|
5728
|
-
"integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
|
|
5729
|
-
"dependencies": {
|
|
5730
|
-
"clone": "^1.0.2"
|
|
5731
|
-
},
|
|
5732
|
-
"funding": {
|
|
5733
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
5734
|
-
}
|
|
5735
|
-
},
|
|
5736
5693
|
"node_modules/defer-to-connect": {
|
|
5737
5694
|
"version": "2.0.1",
|
|
5738
5695
|
"resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
|
|
@@ -9882,6 +9839,69 @@
|
|
|
9882
9839
|
"node": ">=8"
|
|
9883
9840
|
}
|
|
9884
9841
|
},
|
|
9842
|
+
"node_modules/lando/node_modules/cli-table3": {
|
|
9843
|
+
"version": "0.5.1",
|
|
9844
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
|
|
9845
|
+
"integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==",
|
|
9846
|
+
"dependencies": {
|
|
9847
|
+
"object-assign": "^4.1.0",
|
|
9848
|
+
"string-width": "^2.1.1"
|
|
9849
|
+
},
|
|
9850
|
+
"engines": {
|
|
9851
|
+
"node": ">=6"
|
|
9852
|
+
},
|
|
9853
|
+
"optionalDependencies": {
|
|
9854
|
+
"colors": "^1.1.2"
|
|
9855
|
+
}
|
|
9856
|
+
},
|
|
9857
|
+
"node_modules/lando/node_modules/cli-table3/node_modules/ansi-regex": {
|
|
9858
|
+
"version": "3.0.1",
|
|
9859
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
|
|
9860
|
+
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
|
|
9861
|
+
"engines": {
|
|
9862
|
+
"node": ">=4"
|
|
9863
|
+
}
|
|
9864
|
+
},
|
|
9865
|
+
"node_modules/lando/node_modules/cli-table3/node_modules/is-fullwidth-code-point": {
|
|
9866
|
+
"version": "2.0.0",
|
|
9867
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
|
9868
|
+
"integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
|
|
9869
|
+
"engines": {
|
|
9870
|
+
"node": ">=4"
|
|
9871
|
+
}
|
|
9872
|
+
},
|
|
9873
|
+
"node_modules/lando/node_modules/cli-table3/node_modules/string-width": {
|
|
9874
|
+
"version": "2.1.1",
|
|
9875
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
|
|
9876
|
+
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
|
|
9877
|
+
"dependencies": {
|
|
9878
|
+
"is-fullwidth-code-point": "^2.0.0",
|
|
9879
|
+
"strip-ansi": "^4.0.0"
|
|
9880
|
+
},
|
|
9881
|
+
"engines": {
|
|
9882
|
+
"node": ">=4"
|
|
9883
|
+
}
|
|
9884
|
+
},
|
|
9885
|
+
"node_modules/lando/node_modules/cli-table3/node_modules/strip-ansi": {
|
|
9886
|
+
"version": "4.0.0",
|
|
9887
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
|
|
9888
|
+
"integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
|
|
9889
|
+
"dependencies": {
|
|
9890
|
+
"ansi-regex": "^3.0.0"
|
|
9891
|
+
},
|
|
9892
|
+
"engines": {
|
|
9893
|
+
"node": ">=4"
|
|
9894
|
+
}
|
|
9895
|
+
},
|
|
9896
|
+
"node_modules/lando/node_modules/colors": {
|
|
9897
|
+
"version": "1.4.0",
|
|
9898
|
+
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
|
|
9899
|
+
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
|
|
9900
|
+
"optional": true,
|
|
9901
|
+
"engines": {
|
|
9902
|
+
"node": ">=0.1.90"
|
|
9903
|
+
}
|
|
9904
|
+
},
|
|
9885
9905
|
"node_modules/lando/node_modules/is-fullwidth-code-point": {
|
|
9886
9906
|
"version": "3.0.0",
|
|
9887
9907
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
@@ -12811,14 +12831,6 @@
|
|
|
12811
12831
|
"makeerror": "1.0.12"
|
|
12812
12832
|
}
|
|
12813
12833
|
},
|
|
12814
|
-
"node_modules/wcwidth": {
|
|
12815
|
-
"version": "1.0.1",
|
|
12816
|
-
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
|
12817
|
-
"integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
|
|
12818
|
-
"dependencies": {
|
|
12819
|
-
"defaults": "^1.0.3"
|
|
12820
|
-
}
|
|
12821
|
-
},
|
|
12822
12834
|
"node_modules/webidl-conversions": {
|
|
12823
12835
|
"version": "3.0.1",
|
|
12824
12836
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
|
@@ -14975,6 +14987,12 @@
|
|
|
14975
14987
|
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
|
|
14976
14988
|
"dev": true
|
|
14977
14989
|
},
|
|
14990
|
+
"@colors/colors": {
|
|
14991
|
+
"version": "1.5.0",
|
|
14992
|
+
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
14993
|
+
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
|
|
14994
|
+
"optional": true
|
|
14995
|
+
},
|
|
14978
14996
|
"@es-joy/jsdoccomment": {
|
|
14979
14997
|
"version": "0.40.1",
|
|
14980
14998
|
"resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.40.1.tgz",
|
|
@@ -17103,68 +17121,41 @@
|
|
|
17103
17121
|
"restore-cursor": "^2.0.0"
|
|
17104
17122
|
}
|
|
17105
17123
|
},
|
|
17106
|
-
"cli-table": {
|
|
17107
|
-
"version": "git+ssh://git@github.com/automattic/cli-table.git#7b14232ba779929e1859b267bf753c150d90a618",
|
|
17108
|
-
"integrity": "sha512-cgJEeZsoWrjcWTk0F4ycOIQku5HZYSG0qgHmg1t5y9zIn0IeOgKDq/3eaUfgtUWtLiTBIDQXMDtInaYTGMuxKQ==",
|
|
17109
|
-
"from": "cli-table@github:automattic/cli-table#7b14232",
|
|
17110
|
-
"requires": {
|
|
17111
|
-
"chalk": "^2.4.1",
|
|
17112
|
-
"wcwidth": "^1.0.1"
|
|
17113
|
-
},
|
|
17114
|
-
"dependencies": {
|
|
17115
|
-
"chalk": {
|
|
17116
|
-
"version": "2.4.2",
|
|
17117
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
|
17118
|
-
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
|
17119
|
-
"requires": {
|
|
17120
|
-
"ansi-styles": "^3.2.1",
|
|
17121
|
-
"escape-string-regexp": "^1.0.5",
|
|
17122
|
-
"supports-color": "^5.3.0"
|
|
17123
|
-
}
|
|
17124
|
-
}
|
|
17125
|
-
}
|
|
17126
|
-
},
|
|
17127
17124
|
"cli-table3": {
|
|
17128
|
-
"version": "0.
|
|
17129
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.
|
|
17130
|
-
"integrity": "sha512-
|
|
17125
|
+
"version": "0.6.3",
|
|
17126
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz",
|
|
17127
|
+
"integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
|
|
17131
17128
|
"requires": {
|
|
17132
|
-
"colors": "
|
|
17133
|
-
"
|
|
17134
|
-
"string-width": "^2.1.1"
|
|
17129
|
+
"@colors/colors": "1.5.0",
|
|
17130
|
+
"string-width": "^4.2.0"
|
|
17135
17131
|
},
|
|
17136
17132
|
"dependencies": {
|
|
17137
17133
|
"ansi-regex": {
|
|
17138
|
-
"version": "
|
|
17139
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-
|
|
17140
|
-
"integrity": "sha512
|
|
17141
|
-
},
|
|
17142
|
-
"colors": {
|
|
17143
|
-
"version": "1.4.0",
|
|
17144
|
-
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
|
|
17145
|
-
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
|
|
17146
|
-
"optional": true
|
|
17134
|
+
"version": "5.0.1",
|
|
17135
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
17136
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
|
|
17147
17137
|
},
|
|
17148
17138
|
"is-fullwidth-code-point": {
|
|
17149
|
-
"version": "
|
|
17150
|
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-
|
|
17151
|
-
"integrity": "sha512-
|
|
17139
|
+
"version": "3.0.0",
|
|
17140
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
17141
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
|
|
17152
17142
|
},
|
|
17153
17143
|
"string-width": {
|
|
17154
|
-
"version": "2.
|
|
17155
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.
|
|
17156
|
-
"integrity": "sha512-
|
|
17144
|
+
"version": "4.2.3",
|
|
17145
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
17146
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
17157
17147
|
"requires": {
|
|
17158
|
-
"
|
|
17159
|
-
"
|
|
17148
|
+
"emoji-regex": "^8.0.0",
|
|
17149
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
17150
|
+
"strip-ansi": "^6.0.1"
|
|
17160
17151
|
}
|
|
17161
17152
|
},
|
|
17162
17153
|
"strip-ansi": {
|
|
17163
|
-
"version": "
|
|
17164
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-
|
|
17165
|
-
"integrity": "sha512-
|
|
17154
|
+
"version": "6.0.1",
|
|
17155
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
17156
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
17166
17157
|
"requires": {
|
|
17167
|
-
"ansi-regex": "^
|
|
17158
|
+
"ansi-regex": "^5.0.1"
|
|
17168
17159
|
}
|
|
17169
17160
|
}
|
|
17170
17161
|
}
|
|
@@ -17214,11 +17205,6 @@
|
|
|
17214
17205
|
}
|
|
17215
17206
|
}
|
|
17216
17207
|
},
|
|
17217
|
-
"clone": {
|
|
17218
|
-
"version": "1.0.4",
|
|
17219
|
-
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
|
|
17220
|
-
"integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="
|
|
17221
|
-
},
|
|
17222
17208
|
"co": {
|
|
17223
17209
|
"version": "4.6.0",
|
|
17224
17210
|
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
|
|
@@ -17499,14 +17485,6 @@
|
|
|
17499
17485
|
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
|
|
17500
17486
|
"dev": true
|
|
17501
17487
|
},
|
|
17502
|
-
"defaults": {
|
|
17503
|
-
"version": "1.0.4",
|
|
17504
|
-
"resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
|
|
17505
|
-
"integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
|
|
17506
|
-
"requires": {
|
|
17507
|
-
"clone": "^1.0.2"
|
|
17508
|
-
}
|
|
17509
|
-
},
|
|
17510
17488
|
"defer-to-connect": {
|
|
17511
17489
|
"version": "2.0.1",
|
|
17512
17490
|
"resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
|
|
@@ -20520,6 +20498,51 @@
|
|
|
20520
20498
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
20521
20499
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
|
|
20522
20500
|
},
|
|
20501
|
+
"cli-table3": {
|
|
20502
|
+
"version": "0.5.1",
|
|
20503
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
|
|
20504
|
+
"integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==",
|
|
20505
|
+
"requires": {
|
|
20506
|
+
"colors": "^1.1.2",
|
|
20507
|
+
"object-assign": "^4.1.0",
|
|
20508
|
+
"string-width": "^2.1.1"
|
|
20509
|
+
},
|
|
20510
|
+
"dependencies": {
|
|
20511
|
+
"ansi-regex": {
|
|
20512
|
+
"version": "3.0.1",
|
|
20513
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
|
|
20514
|
+
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="
|
|
20515
|
+
},
|
|
20516
|
+
"is-fullwidth-code-point": {
|
|
20517
|
+
"version": "2.0.0",
|
|
20518
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
|
20519
|
+
"integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
|
|
20520
|
+
},
|
|
20521
|
+
"string-width": {
|
|
20522
|
+
"version": "2.1.1",
|
|
20523
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
|
|
20524
|
+
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
|
|
20525
|
+
"requires": {
|
|
20526
|
+
"is-fullwidth-code-point": "^2.0.0",
|
|
20527
|
+
"strip-ansi": "^4.0.0"
|
|
20528
|
+
}
|
|
20529
|
+
},
|
|
20530
|
+
"strip-ansi": {
|
|
20531
|
+
"version": "4.0.0",
|
|
20532
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
|
|
20533
|
+
"integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
|
|
20534
|
+
"requires": {
|
|
20535
|
+
"ansi-regex": "^3.0.0"
|
|
20536
|
+
}
|
|
20537
|
+
}
|
|
20538
|
+
}
|
|
20539
|
+
},
|
|
20540
|
+
"colors": {
|
|
20541
|
+
"version": "1.4.0",
|
|
20542
|
+
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
|
|
20543
|
+
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
|
|
20544
|
+
"optional": true
|
|
20545
|
+
},
|
|
20523
20546
|
"is-fullwidth-code-point": {
|
|
20524
20547
|
"version": "3.0.0",
|
|
20525
20548
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
@@ -22648,14 +22671,6 @@
|
|
|
22648
22671
|
"makeerror": "1.0.12"
|
|
22649
22672
|
}
|
|
22650
22673
|
},
|
|
22651
|
-
"wcwidth": {
|
|
22652
|
-
"version": "1.0.1",
|
|
22653
|
-
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
|
22654
|
-
"integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
|
|
22655
|
-
"requires": {
|
|
22656
|
-
"defaults": "^1.0.3"
|
|
22657
|
-
}
|
|
22658
|
-
},
|
|
22659
22674
|
"webidl-conversions": {
|
|
22660
22675
|
"version": "3.0.1",
|
|
22661
22676
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.36.0",
|
|
3
|
+
"version": "2.36.2-dev.0",
|
|
4
4
|
"description": "The VIP Javascript library & CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
"vip-config-software": "dist/bin/vip-config-software.js",
|
|
22
22
|
"vip-config-software-get": "dist/bin/vip-config-software-get.js",
|
|
23
23
|
"vip-config-software-update": "dist/bin/vip-config-software-update.js",
|
|
24
|
+
"vip-db": "dist/bin/vip-db.js",
|
|
25
|
+
"vip-db-phpmyadmin": "dist/bin/vip-db-phpmyadmin.js",
|
|
24
26
|
"vip-dev-env": "dist/bin/vip-dev-env.js",
|
|
25
27
|
"vip-dev-env-create": "dist/bin/vip-dev-env-create.js",
|
|
26
28
|
"vip-dev-env-update": "dist/bin/vip-dev-env-update.js",
|
|
@@ -142,7 +144,7 @@
|
|
|
142
144
|
"chalk": "4.1.2",
|
|
143
145
|
"check-disk-space": "3.4.0",
|
|
144
146
|
"cli-columns": "^4.0.0",
|
|
145
|
-
"cli-
|
|
147
|
+
"cli-table3": "^0.6.3",
|
|
146
148
|
"configstore": "5.0.1",
|
|
147
149
|
"copy-dir": "0.4.0",
|
|
148
150
|
"debug": "4.3.4",
|
|
@@ -185,7 +187,6 @@
|
|
|
185
187
|
}
|
|
186
188
|
},
|
|
187
189
|
"publishConfig": {
|
|
188
|
-
"access": "public"
|
|
189
|
-
"provenance": true
|
|
190
|
+
"access": "public"
|
|
190
191
|
}
|
|
191
192
|
}
|