@automattic/vip 2.36.3 → 2.37.0-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/dist/bin/vip-db-phpmyadmin.js +53 -0
- package/dist/bin/vip-db.js +19 -0
- package/dist/bin/vip.js +1 -1
- package/dist/commands/phpmyadmin.js +95 -0
- package/npm-shrinkwrap.json +136 -132
- package/package.json +5 -3
|
@@ -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
|
+
});
|
package/dist/bin/vip.js
CHANGED
|
@@ -21,7 +21,7 @@ if (_config.default && _config.default.environment !== 'production') {
|
|
|
21
21
|
const tokenURL = 'https://dashboard.wpvip.com/me/cli/token';
|
|
22
22
|
const runCmd = async function () {
|
|
23
23
|
const cmd = (0, _command.default)();
|
|
24
|
-
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');
|
|
24
|
+
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');
|
|
25
25
|
cmd.argv(process.argv);
|
|
26
26
|
};
|
|
27
27
|
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.PhpMyAdminCommand = exports.GENERATE_PHP_MY_ADMIN_URL_MUTATION = void 0;
|
|
5
|
+
var _chalk = _interopRequireDefault(require("chalk"));
|
|
6
|
+
var _graphqlTag = _interopRequireDefault(require("graphql-tag"));
|
|
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 openUrl(url) {
|
|
64
|
+
const {
|
|
65
|
+
default: open
|
|
66
|
+
} = await import('open');
|
|
67
|
+
void open(url, {
|
|
68
|
+
wait: false
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
async run(silent = false) {
|
|
72
|
+
this.silent = silent;
|
|
73
|
+
if (!this.env.id) {
|
|
74
|
+
exit.withError('No environment was specified');
|
|
75
|
+
}
|
|
76
|
+
const message = 'Note: PHPMyAdmin sessions are read-only. If you run a query that writes to DB, it will fail.';
|
|
77
|
+
console.log(_chalk.default.yellow(message));
|
|
78
|
+
this.log('Generating PhpMyAdmin URL...');
|
|
79
|
+
let url;
|
|
80
|
+
try {
|
|
81
|
+
url = await generatePhpMyAdminAccess(this.env.id);
|
|
82
|
+
} catch (err) {
|
|
83
|
+
const error = err;
|
|
84
|
+
void this.track('error', {
|
|
85
|
+
error_type: 'generate_pma_url',
|
|
86
|
+
error_message: error.message,
|
|
87
|
+
stack: error.stack
|
|
88
|
+
});
|
|
89
|
+
exit.withError(`Failed to generate PhpMyAdmin URL: ${error.message}`);
|
|
90
|
+
}
|
|
91
|
+
void this.openUrl(url);
|
|
92
|
+
this.log('PhpMyAdmin is opened in your default browser.');
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
exports.PhpMyAdminCommand = PhpMyAdminCommand;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.37.0-dev.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@automattic/vip",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.37.0-dev.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
@@ -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",
|
|
@@ -104,8 +106,8 @@
|
|
|
104
106
|
"devDependencies": {
|
|
105
107
|
"@automattic/eslint-plugin-wpvip": "0.9.1",
|
|
106
108
|
"@babel/cli": "7.23.4",
|
|
107
|
-
"@babel/core": "7.23.
|
|
108
|
-
"@babel/preset-env": "7.23.
|
|
109
|
+
"@babel/core": "7.23.6",
|
|
110
|
+
"@babel/preset-env": "7.23.6",
|
|
109
111
|
"@babel/preset-typescript": "7.23.3",
|
|
110
112
|
"@jest/globals": "^29.7.0",
|
|
111
113
|
"@jest/test-sequencer": "^29.7.0",
|
|
@@ -359,9 +361,9 @@
|
|
|
359
361
|
}
|
|
360
362
|
},
|
|
361
363
|
"node_modules/@automattic/vip-search-replace": {
|
|
362
|
-
"version": "1.1.
|
|
363
|
-
"resolved": "https://registry.npmjs.org/@automattic/vip-search-replace/-/vip-search-replace-1.1.
|
|
364
|
-
"integrity": "sha512-
|
|
364
|
+
"version": "1.1.2",
|
|
365
|
+
"resolved": "https://registry.npmjs.org/@automattic/vip-search-replace/-/vip-search-replace-1.1.2.tgz",
|
|
366
|
+
"integrity": "sha512-7gEp8lm8RitIoOW2v/SbmiRhAAosfqHYt+cmPnZzZAPQdQD/SNYUCcQ1iMcQuiKYBFJ00V7U7VUM2IEXB25xdQ==",
|
|
365
367
|
"cpu": [
|
|
366
368
|
"ia32",
|
|
367
369
|
"x64",
|
|
@@ -471,21 +473,21 @@
|
|
|
471
473
|
}
|
|
472
474
|
},
|
|
473
475
|
"node_modules/@babel/core": {
|
|
474
|
-
"version": "7.23.
|
|
475
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.
|
|
476
|
-
"integrity": "sha512-
|
|
476
|
+
"version": "7.23.6",
|
|
477
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.6.tgz",
|
|
478
|
+
"integrity": "sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==",
|
|
477
479
|
"dev": true,
|
|
478
480
|
"dependencies": {
|
|
479
481
|
"@ampproject/remapping": "^2.2.0",
|
|
480
482
|
"@babel/code-frame": "^7.23.5",
|
|
481
|
-
"@babel/generator": "^7.23.
|
|
482
|
-
"@babel/helper-compilation-targets": "^7.
|
|
483
|
+
"@babel/generator": "^7.23.6",
|
|
484
|
+
"@babel/helper-compilation-targets": "^7.23.6",
|
|
483
485
|
"@babel/helper-module-transforms": "^7.23.3",
|
|
484
|
-
"@babel/helpers": "^7.23.
|
|
485
|
-
"@babel/parser": "^7.23.
|
|
486
|
+
"@babel/helpers": "^7.23.6",
|
|
487
|
+
"@babel/parser": "^7.23.6",
|
|
486
488
|
"@babel/template": "^7.22.15",
|
|
487
|
-
"@babel/traverse": "^7.23.
|
|
488
|
-
"@babel/types": "^7.23.
|
|
489
|
+
"@babel/traverse": "^7.23.6",
|
|
490
|
+
"@babel/types": "^7.23.6",
|
|
489
491
|
"convert-source-map": "^2.0.0",
|
|
490
492
|
"debug": "^4.1.0",
|
|
491
493
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -552,12 +554,12 @@
|
|
|
552
554
|
}
|
|
553
555
|
},
|
|
554
556
|
"node_modules/@babel/generator": {
|
|
555
|
-
"version": "7.23.
|
|
556
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.
|
|
557
|
-
"integrity": "sha512-
|
|
557
|
+
"version": "7.23.6",
|
|
558
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz",
|
|
559
|
+
"integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==",
|
|
558
560
|
"dev": true,
|
|
559
561
|
"dependencies": {
|
|
560
|
-
"@babel/types": "^7.23.
|
|
562
|
+
"@babel/types": "^7.23.6",
|
|
561
563
|
"@jridgewell/gen-mapping": "^0.3.2",
|
|
562
564
|
"@jridgewell/trace-mapping": "^0.3.17",
|
|
563
565
|
"jsesc": "^2.5.1"
|
|
@@ -605,14 +607,14 @@
|
|
|
605
607
|
}
|
|
606
608
|
},
|
|
607
609
|
"node_modules/@babel/helper-compilation-targets": {
|
|
608
|
-
"version": "7.
|
|
609
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
|
610
|
-
"integrity": "sha512-
|
|
610
|
+
"version": "7.23.6",
|
|
611
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz",
|
|
612
|
+
"integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==",
|
|
611
613
|
"dev": true,
|
|
612
614
|
"dependencies": {
|
|
613
|
-
"@babel/compat-data": "^7.
|
|
614
|
-
"@babel/helper-validator-option": "^7.
|
|
615
|
-
"browserslist": "^4.
|
|
615
|
+
"@babel/compat-data": "^7.23.5",
|
|
616
|
+
"@babel/helper-validator-option": "^7.23.5",
|
|
617
|
+
"browserslist": "^4.22.2",
|
|
616
618
|
"lru-cache": "^5.1.1",
|
|
617
619
|
"semver": "^6.3.1"
|
|
618
620
|
},
|
|
@@ -913,14 +915,14 @@
|
|
|
913
915
|
}
|
|
914
916
|
},
|
|
915
917
|
"node_modules/@babel/helpers": {
|
|
916
|
-
"version": "7.23.
|
|
917
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.
|
|
918
|
-
"integrity": "sha512-
|
|
918
|
+
"version": "7.23.6",
|
|
919
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz",
|
|
920
|
+
"integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==",
|
|
919
921
|
"dev": true,
|
|
920
922
|
"dependencies": {
|
|
921
923
|
"@babel/template": "^7.22.15",
|
|
922
|
-
"@babel/traverse": "^7.23.
|
|
923
|
-
"@babel/types": "^7.23.
|
|
924
|
+
"@babel/traverse": "^7.23.6",
|
|
925
|
+
"@babel/types": "^7.23.6"
|
|
924
926
|
},
|
|
925
927
|
"engines": {
|
|
926
928
|
"node": ">=6.9.0"
|
|
@@ -955,9 +957,9 @@
|
|
|
955
957
|
}
|
|
956
958
|
},
|
|
957
959
|
"node_modules/@babel/parser": {
|
|
958
|
-
"version": "7.23.
|
|
959
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.
|
|
960
|
-
"integrity": "sha512-
|
|
960
|
+
"version": "7.23.6",
|
|
961
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz",
|
|
962
|
+
"integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==",
|
|
961
963
|
"dev": true,
|
|
962
964
|
"bin": {
|
|
963
965
|
"parser": "bin/babel-parser.js"
|
|
@@ -1550,12 +1552,13 @@
|
|
|
1550
1552
|
}
|
|
1551
1553
|
},
|
|
1552
1554
|
"node_modules/@babel/plugin-transform-for-of": {
|
|
1553
|
-
"version": "7.23.
|
|
1554
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.
|
|
1555
|
-
"integrity": "sha512-
|
|
1555
|
+
"version": "7.23.6",
|
|
1556
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz",
|
|
1557
|
+
"integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==",
|
|
1556
1558
|
"dev": true,
|
|
1557
1559
|
"dependencies": {
|
|
1558
|
-
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1560
|
+
"@babel/helper-plugin-utils": "^7.22.5",
|
|
1561
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
|
|
1559
1562
|
},
|
|
1560
1563
|
"engines": {
|
|
1561
1564
|
"node": ">=6.9.0"
|
|
@@ -2094,13 +2097,13 @@
|
|
|
2094
2097
|
}
|
|
2095
2098
|
},
|
|
2096
2099
|
"node_modules/@babel/preset-env": {
|
|
2097
|
-
"version": "7.23.
|
|
2098
|
-
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.
|
|
2099
|
-
"integrity": "sha512-
|
|
2100
|
+
"version": "7.23.6",
|
|
2101
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.6.tgz",
|
|
2102
|
+
"integrity": "sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==",
|
|
2100
2103
|
"dev": true,
|
|
2101
2104
|
"dependencies": {
|
|
2102
2105
|
"@babel/compat-data": "^7.23.5",
|
|
2103
|
-
"@babel/helper-compilation-targets": "^7.
|
|
2106
|
+
"@babel/helper-compilation-targets": "^7.23.6",
|
|
2104
2107
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
2105
2108
|
"@babel/helper-validator-option": "^7.23.5",
|
|
2106
2109
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3",
|
|
@@ -2140,7 +2143,7 @@
|
|
|
2140
2143
|
"@babel/plugin-transform-dynamic-import": "^7.23.4",
|
|
2141
2144
|
"@babel/plugin-transform-exponentiation-operator": "^7.23.3",
|
|
2142
2145
|
"@babel/plugin-transform-export-namespace-from": "^7.23.4",
|
|
2143
|
-
"@babel/plugin-transform-for-of": "^7.23.
|
|
2146
|
+
"@babel/plugin-transform-for-of": "^7.23.6",
|
|
2144
2147
|
"@babel/plugin-transform-function-name": "^7.23.3",
|
|
2145
2148
|
"@babel/plugin-transform-json-strings": "^7.23.4",
|
|
2146
2149
|
"@babel/plugin-transform-literals": "^7.23.3",
|
|
@@ -2262,20 +2265,20 @@
|
|
|
2262
2265
|
}
|
|
2263
2266
|
},
|
|
2264
2267
|
"node_modules/@babel/traverse": {
|
|
2265
|
-
"version": "7.23.
|
|
2266
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.
|
|
2267
|
-
"integrity": "sha512-
|
|
2268
|
+
"version": "7.23.6",
|
|
2269
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz",
|
|
2270
|
+
"integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==",
|
|
2268
2271
|
"dev": true,
|
|
2269
2272
|
"dependencies": {
|
|
2270
2273
|
"@babel/code-frame": "^7.23.5",
|
|
2271
|
-
"@babel/generator": "^7.23.
|
|
2274
|
+
"@babel/generator": "^7.23.6",
|
|
2272
2275
|
"@babel/helper-environment-visitor": "^7.22.20",
|
|
2273
2276
|
"@babel/helper-function-name": "^7.23.0",
|
|
2274
2277
|
"@babel/helper-hoist-variables": "^7.22.5",
|
|
2275
2278
|
"@babel/helper-split-export-declaration": "^7.22.6",
|
|
2276
|
-
"@babel/parser": "^7.23.
|
|
2277
|
-
"@babel/types": "^7.23.
|
|
2278
|
-
"debug": "^4.1
|
|
2279
|
+
"@babel/parser": "^7.23.6",
|
|
2280
|
+
"@babel/types": "^7.23.6",
|
|
2281
|
+
"debug": "^4.3.1",
|
|
2279
2282
|
"globals": "^11.1.0"
|
|
2280
2283
|
},
|
|
2281
2284
|
"engines": {
|
|
@@ -2283,9 +2286,9 @@
|
|
|
2283
2286
|
}
|
|
2284
2287
|
},
|
|
2285
2288
|
"node_modules/@babel/types": {
|
|
2286
|
-
"version": "7.23.
|
|
2287
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.
|
|
2288
|
-
"integrity": "sha512
|
|
2289
|
+
"version": "7.23.6",
|
|
2290
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz",
|
|
2291
|
+
"integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==",
|
|
2289
2292
|
"dev": true,
|
|
2290
2293
|
"dependencies": {
|
|
2291
2294
|
"@babel/helper-string-parser": "^7.23.4",
|
|
@@ -5015,9 +5018,9 @@
|
|
|
5015
5018
|
}
|
|
5016
5019
|
},
|
|
5017
5020
|
"node_modules/browserslist": {
|
|
5018
|
-
"version": "4.22.
|
|
5019
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.
|
|
5020
|
-
"integrity": "sha512-
|
|
5021
|
+
"version": "4.22.2",
|
|
5022
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz",
|
|
5023
|
+
"integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==",
|
|
5021
5024
|
"dev": true,
|
|
5022
5025
|
"funding": [
|
|
5023
5026
|
{
|
|
@@ -5034,9 +5037,9 @@
|
|
|
5034
5037
|
}
|
|
5035
5038
|
],
|
|
5036
5039
|
"dependencies": {
|
|
5037
|
-
"caniuse-lite": "^1.0.
|
|
5038
|
-
"electron-to-chromium": "^1.4.
|
|
5039
|
-
"node-releases": "^2.0.
|
|
5040
|
+
"caniuse-lite": "^1.0.30001565",
|
|
5041
|
+
"electron-to-chromium": "^1.4.601",
|
|
5042
|
+
"node-releases": "^2.0.14",
|
|
5040
5043
|
"update-browserslist-db": "^1.0.13"
|
|
5041
5044
|
},
|
|
5042
5045
|
"bin": {
|
|
@@ -5185,9 +5188,9 @@
|
|
|
5185
5188
|
}
|
|
5186
5189
|
},
|
|
5187
5190
|
"node_modules/caniuse-lite": {
|
|
5188
|
-
"version": "1.0.
|
|
5189
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
5190
|
-
"integrity": "sha512-
|
|
5191
|
+
"version": "1.0.30001568",
|
|
5192
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001568.tgz",
|
|
5193
|
+
"integrity": "sha512-vSUkH84HontZJ88MiNrOau1EBrCqEQYgkC5gIySiDlpsm8sGVrhU7Kx4V6h0tnqaHzIHZv08HlJIwPbL4XL9+A==",
|
|
5191
5194
|
"dev": true,
|
|
5192
5195
|
"funding": [
|
|
5193
5196
|
{
|
|
@@ -6108,9 +6111,9 @@
|
|
|
6108
6111
|
}
|
|
6109
6112
|
},
|
|
6110
6113
|
"node_modules/electron-to-chromium": {
|
|
6111
|
-
"version": "1.4.
|
|
6112
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.
|
|
6113
|
-
"integrity": "sha512-
|
|
6114
|
+
"version": "1.4.610",
|
|
6115
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.610.tgz",
|
|
6116
|
+
"integrity": "sha512-mqi2oL1mfeHYtOdCxbPQYV/PL7YrQlxbvFEZ0Ee8GbDdShimqt2/S6z2RWqysuvlwdOrQdqvE0KZrBTipAeJzg==",
|
|
6114
6117
|
"dev": true
|
|
6115
6118
|
},
|
|
6116
6119
|
"node_modules/emittery": {
|
|
@@ -10684,9 +10687,9 @@
|
|
|
10684
10687
|
"dev": true
|
|
10685
10688
|
},
|
|
10686
10689
|
"node_modules/node-releases": {
|
|
10687
|
-
"version": "2.0.
|
|
10688
|
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.
|
|
10689
|
-
"integrity": "sha512-
|
|
10690
|
+
"version": "2.0.14",
|
|
10691
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz",
|
|
10692
|
+
"integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==",
|
|
10690
10693
|
"dev": true
|
|
10691
10694
|
},
|
|
10692
10695
|
"node_modules/normalize-path": {
|
|
@@ -14005,9 +14008,9 @@
|
|
|
14005
14008
|
}
|
|
14006
14009
|
},
|
|
14007
14010
|
"@automattic/vip-search-replace": {
|
|
14008
|
-
"version": "1.1.
|
|
14009
|
-
"resolved": "https://registry.npmjs.org/@automattic/vip-search-replace/-/vip-search-replace-1.1.
|
|
14010
|
-
"integrity": "sha512-
|
|
14011
|
+
"version": "1.1.2",
|
|
14012
|
+
"resolved": "https://registry.npmjs.org/@automattic/vip-search-replace/-/vip-search-replace-1.1.2.tgz",
|
|
14013
|
+
"integrity": "sha512-7gEp8lm8RitIoOW2v/SbmiRhAAosfqHYt+cmPnZzZAPQdQD/SNYUCcQ1iMcQuiKYBFJ00V7U7VUM2IEXB25xdQ==",
|
|
14011
14014
|
"requires": {
|
|
14012
14015
|
"debug": "^4.2.0",
|
|
14013
14016
|
"follow-redirects": "^1.13.0"
|
|
@@ -14084,21 +14087,21 @@
|
|
|
14084
14087
|
"dev": true
|
|
14085
14088
|
},
|
|
14086
14089
|
"@babel/core": {
|
|
14087
|
-
"version": "7.23.
|
|
14088
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.
|
|
14089
|
-
"integrity": "sha512-
|
|
14090
|
+
"version": "7.23.6",
|
|
14091
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.6.tgz",
|
|
14092
|
+
"integrity": "sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==",
|
|
14090
14093
|
"dev": true,
|
|
14091
14094
|
"requires": {
|
|
14092
14095
|
"@ampproject/remapping": "^2.2.0",
|
|
14093
14096
|
"@babel/code-frame": "^7.23.5",
|
|
14094
|
-
"@babel/generator": "^7.23.
|
|
14095
|
-
"@babel/helper-compilation-targets": "^7.
|
|
14097
|
+
"@babel/generator": "^7.23.6",
|
|
14098
|
+
"@babel/helper-compilation-targets": "^7.23.6",
|
|
14096
14099
|
"@babel/helper-module-transforms": "^7.23.3",
|
|
14097
|
-
"@babel/helpers": "^7.23.
|
|
14098
|
-
"@babel/parser": "^7.23.
|
|
14100
|
+
"@babel/helpers": "^7.23.6",
|
|
14101
|
+
"@babel/parser": "^7.23.6",
|
|
14099
14102
|
"@babel/template": "^7.22.15",
|
|
14100
|
-
"@babel/traverse": "^7.23.
|
|
14101
|
-
"@babel/types": "^7.23.
|
|
14103
|
+
"@babel/traverse": "^7.23.6",
|
|
14104
|
+
"@babel/types": "^7.23.6",
|
|
14102
14105
|
"convert-source-map": "^2.0.0",
|
|
14103
14106
|
"debug": "^4.1.0",
|
|
14104
14107
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -14146,12 +14149,12 @@
|
|
|
14146
14149
|
}
|
|
14147
14150
|
},
|
|
14148
14151
|
"@babel/generator": {
|
|
14149
|
-
"version": "7.23.
|
|
14150
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.
|
|
14151
|
-
"integrity": "sha512-
|
|
14152
|
+
"version": "7.23.6",
|
|
14153
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz",
|
|
14154
|
+
"integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==",
|
|
14152
14155
|
"dev": true,
|
|
14153
14156
|
"requires": {
|
|
14154
|
-
"@babel/types": "^7.23.
|
|
14157
|
+
"@babel/types": "^7.23.6",
|
|
14155
14158
|
"@jridgewell/gen-mapping": "^0.3.2",
|
|
14156
14159
|
"@jridgewell/trace-mapping": "^0.3.17",
|
|
14157
14160
|
"jsesc": "^2.5.1"
|
|
@@ -14189,14 +14192,14 @@
|
|
|
14189
14192
|
}
|
|
14190
14193
|
},
|
|
14191
14194
|
"@babel/helper-compilation-targets": {
|
|
14192
|
-
"version": "7.
|
|
14193
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
|
14194
|
-
"integrity": "sha512-
|
|
14195
|
+
"version": "7.23.6",
|
|
14196
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz",
|
|
14197
|
+
"integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==",
|
|
14195
14198
|
"dev": true,
|
|
14196
14199
|
"requires": {
|
|
14197
|
-
"@babel/compat-data": "^7.
|
|
14198
|
-
"@babel/helper-validator-option": "^7.
|
|
14199
|
-
"browserslist": "^4.
|
|
14200
|
+
"@babel/compat-data": "^7.23.5",
|
|
14201
|
+
"@babel/helper-validator-option": "^7.23.5",
|
|
14202
|
+
"browserslist": "^4.22.2",
|
|
14200
14203
|
"lru-cache": "^5.1.1",
|
|
14201
14204
|
"semver": "^6.3.1"
|
|
14202
14205
|
},
|
|
@@ -14416,14 +14419,14 @@
|
|
|
14416
14419
|
}
|
|
14417
14420
|
},
|
|
14418
14421
|
"@babel/helpers": {
|
|
14419
|
-
"version": "7.23.
|
|
14420
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.
|
|
14421
|
-
"integrity": "sha512-
|
|
14422
|
+
"version": "7.23.6",
|
|
14423
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz",
|
|
14424
|
+
"integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==",
|
|
14422
14425
|
"dev": true,
|
|
14423
14426
|
"requires": {
|
|
14424
14427
|
"@babel/template": "^7.22.15",
|
|
14425
|
-
"@babel/traverse": "^7.23.
|
|
14426
|
-
"@babel/types": "^7.23.
|
|
14428
|
+
"@babel/traverse": "^7.23.6",
|
|
14429
|
+
"@babel/types": "^7.23.6"
|
|
14427
14430
|
}
|
|
14428
14431
|
},
|
|
14429
14432
|
"@babel/highlight": {
|
|
@@ -14451,9 +14454,9 @@
|
|
|
14451
14454
|
}
|
|
14452
14455
|
},
|
|
14453
14456
|
"@babel/parser": {
|
|
14454
|
-
"version": "7.23.
|
|
14455
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.
|
|
14456
|
-
"integrity": "sha512-
|
|
14457
|
+
"version": "7.23.6",
|
|
14458
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz",
|
|
14459
|
+
"integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==",
|
|
14457
14460
|
"dev": true
|
|
14458
14461
|
},
|
|
14459
14462
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
|
|
@@ -14840,12 +14843,13 @@
|
|
|
14840
14843
|
}
|
|
14841
14844
|
},
|
|
14842
14845
|
"@babel/plugin-transform-for-of": {
|
|
14843
|
-
"version": "7.23.
|
|
14844
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.
|
|
14845
|
-
"integrity": "sha512-
|
|
14846
|
+
"version": "7.23.6",
|
|
14847
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz",
|
|
14848
|
+
"integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==",
|
|
14846
14849
|
"dev": true,
|
|
14847
14850
|
"requires": {
|
|
14848
|
-
"@babel/helper-plugin-utils": "^7.22.5"
|
|
14851
|
+
"@babel/helper-plugin-utils": "^7.22.5",
|
|
14852
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
|
|
14849
14853
|
}
|
|
14850
14854
|
},
|
|
14851
14855
|
"@babel/plugin-transform-function-name": {
|
|
@@ -15180,13 +15184,13 @@
|
|
|
15180
15184
|
}
|
|
15181
15185
|
},
|
|
15182
15186
|
"@babel/preset-env": {
|
|
15183
|
-
"version": "7.23.
|
|
15184
|
-
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.
|
|
15185
|
-
"integrity": "sha512-
|
|
15187
|
+
"version": "7.23.6",
|
|
15188
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.6.tgz",
|
|
15189
|
+
"integrity": "sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==",
|
|
15186
15190
|
"dev": true,
|
|
15187
15191
|
"requires": {
|
|
15188
15192
|
"@babel/compat-data": "^7.23.5",
|
|
15189
|
-
"@babel/helper-compilation-targets": "^7.
|
|
15193
|
+
"@babel/helper-compilation-targets": "^7.23.6",
|
|
15190
15194
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
15191
15195
|
"@babel/helper-validator-option": "^7.23.5",
|
|
15192
15196
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3",
|
|
@@ -15226,7 +15230,7 @@
|
|
|
15226
15230
|
"@babel/plugin-transform-dynamic-import": "^7.23.4",
|
|
15227
15231
|
"@babel/plugin-transform-exponentiation-operator": "^7.23.3",
|
|
15228
15232
|
"@babel/plugin-transform-export-namespace-from": "^7.23.4",
|
|
15229
|
-
"@babel/plugin-transform-for-of": "^7.23.
|
|
15233
|
+
"@babel/plugin-transform-for-of": "^7.23.6",
|
|
15230
15234
|
"@babel/plugin-transform-function-name": "^7.23.3",
|
|
15231
15235
|
"@babel/plugin-transform-json-strings": "^7.23.4",
|
|
15232
15236
|
"@babel/plugin-transform-literals": "^7.23.3",
|
|
@@ -15326,27 +15330,27 @@
|
|
|
15326
15330
|
}
|
|
15327
15331
|
},
|
|
15328
15332
|
"@babel/traverse": {
|
|
15329
|
-
"version": "7.23.
|
|
15330
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.
|
|
15331
|
-
"integrity": "sha512-
|
|
15333
|
+
"version": "7.23.6",
|
|
15334
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz",
|
|
15335
|
+
"integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==",
|
|
15332
15336
|
"dev": true,
|
|
15333
15337
|
"requires": {
|
|
15334
15338
|
"@babel/code-frame": "^7.23.5",
|
|
15335
|
-
"@babel/generator": "^7.23.
|
|
15339
|
+
"@babel/generator": "^7.23.6",
|
|
15336
15340
|
"@babel/helper-environment-visitor": "^7.22.20",
|
|
15337
15341
|
"@babel/helper-function-name": "^7.23.0",
|
|
15338
15342
|
"@babel/helper-hoist-variables": "^7.22.5",
|
|
15339
15343
|
"@babel/helper-split-export-declaration": "^7.22.6",
|
|
15340
|
-
"@babel/parser": "^7.23.
|
|
15341
|
-
"@babel/types": "^7.23.
|
|
15342
|
-
"debug": "^4.1
|
|
15344
|
+
"@babel/parser": "^7.23.6",
|
|
15345
|
+
"@babel/types": "^7.23.6",
|
|
15346
|
+
"debug": "^4.3.1",
|
|
15343
15347
|
"globals": "^11.1.0"
|
|
15344
15348
|
}
|
|
15345
15349
|
},
|
|
15346
15350
|
"@babel/types": {
|
|
15347
|
-
"version": "7.23.
|
|
15348
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.
|
|
15349
|
-
"integrity": "sha512
|
|
15351
|
+
"version": "7.23.6",
|
|
15352
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz",
|
|
15353
|
+
"integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==",
|
|
15350
15354
|
"dev": true,
|
|
15351
15355
|
"requires": {
|
|
15352
15356
|
"@babel/helper-string-parser": "^7.23.4",
|
|
@@ -17437,14 +17441,14 @@
|
|
|
17437
17441
|
}
|
|
17438
17442
|
},
|
|
17439
17443
|
"browserslist": {
|
|
17440
|
-
"version": "4.22.
|
|
17441
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.
|
|
17442
|
-
"integrity": "sha512-
|
|
17444
|
+
"version": "4.22.2",
|
|
17445
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz",
|
|
17446
|
+
"integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==",
|
|
17443
17447
|
"dev": true,
|
|
17444
17448
|
"requires": {
|
|
17445
|
-
"caniuse-lite": "^1.0.
|
|
17446
|
-
"electron-to-chromium": "^1.4.
|
|
17447
|
-
"node-releases": "^2.0.
|
|
17449
|
+
"caniuse-lite": "^1.0.30001565",
|
|
17450
|
+
"electron-to-chromium": "^1.4.601",
|
|
17451
|
+
"node-releases": "^2.0.14",
|
|
17448
17452
|
"update-browserslist-db": "^1.0.13"
|
|
17449
17453
|
}
|
|
17450
17454
|
},
|
|
@@ -17543,9 +17547,9 @@
|
|
|
17543
17547
|
"integrity": "sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA=="
|
|
17544
17548
|
},
|
|
17545
17549
|
"caniuse-lite": {
|
|
17546
|
-
"version": "1.0.
|
|
17547
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
17548
|
-
"integrity": "sha512-
|
|
17550
|
+
"version": "1.0.30001568",
|
|
17551
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001568.tgz",
|
|
17552
|
+
"integrity": "sha512-vSUkH84HontZJ88MiNrOau1EBrCqEQYgkC5gIySiDlpsm8sGVrhU7Kx4V6h0tnqaHzIHZv08HlJIwPbL4XL9+A==",
|
|
17549
17553
|
"dev": true
|
|
17550
17554
|
},
|
|
17551
17555
|
"chalk": {
|
|
@@ -18219,9 +18223,9 @@
|
|
|
18219
18223
|
}
|
|
18220
18224
|
},
|
|
18221
18225
|
"electron-to-chromium": {
|
|
18222
|
-
"version": "1.4.
|
|
18223
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.
|
|
18224
|
-
"integrity": "sha512-
|
|
18226
|
+
"version": "1.4.610",
|
|
18227
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.610.tgz",
|
|
18228
|
+
"integrity": "sha512-mqi2oL1mfeHYtOdCxbPQYV/PL7YrQlxbvFEZ0Ee8GbDdShimqt2/S6z2RWqysuvlwdOrQdqvE0KZrBTipAeJzg==",
|
|
18225
18229
|
"dev": true
|
|
18226
18230
|
},
|
|
18227
18231
|
"emittery": {
|
|
@@ -21556,9 +21560,9 @@
|
|
|
21556
21560
|
"dev": true
|
|
21557
21561
|
},
|
|
21558
21562
|
"node-releases": {
|
|
21559
|
-
"version": "2.0.
|
|
21560
|
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.
|
|
21561
|
-
"integrity": "sha512-
|
|
21563
|
+
"version": "2.0.14",
|
|
21564
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz",
|
|
21565
|
+
"integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==",
|
|
21562
21566
|
"dev": true
|
|
21563
21567
|
},
|
|
21564
21568
|
"normalize-path": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.37.0-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",
|
|
@@ -105,8 +107,8 @@
|
|
|
105
107
|
"devDependencies": {
|
|
106
108
|
"@automattic/eslint-plugin-wpvip": "0.9.1",
|
|
107
109
|
"@babel/cli": "7.23.4",
|
|
108
|
-
"@babel/core": "7.23.
|
|
109
|
-
"@babel/preset-env": "7.23.
|
|
110
|
+
"@babel/core": "7.23.6",
|
|
111
|
+
"@babel/preset-env": "7.23.6",
|
|
110
112
|
"@babel/preset-typescript": "7.23.3",
|
|
111
113
|
"@jest/globals": "^29.7.0",
|
|
112
114
|
"@jest/test-sequencer": "^29.7.0",
|