@automattic/vip 3.25.1 → 3.25.2
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 +11 -4
- package/dist/bin/vip-import.js +1 -1
- package/dist/commands/phpmyadmin.js +64 -16
- package/npm-shrinkwrap.json +538 -419
- package/package.json +9 -9
- package/tsconfig.json +1 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "3.25.
|
|
3
|
+
"version": "3.25.2",
|
|
4
4
|
"description": "The VIP Javascript library & CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"@automattic/eslint-plugin-wpvip": "^1.0.0",
|
|
115
115
|
"@babel/cli": "7.28.6",
|
|
116
116
|
"@babel/core": "7.29.0",
|
|
117
|
-
"@babel/preset-env": "7.29.
|
|
117
|
+
"@babel/preset-env": "7.29.3",
|
|
118
118
|
"@babel/preset-typescript": "7.28.5",
|
|
119
119
|
"@jest/globals": "^30.0.0",
|
|
120
120
|
"@jest/test-sequencer": "^30.0.0",
|
|
@@ -131,14 +131,14 @@
|
|
|
131
131
|
"@types/ssh2": "^1.15.4",
|
|
132
132
|
"@types/tar": "^7.0.87",
|
|
133
133
|
"@types/xml2js": "^0.4.14",
|
|
134
|
-
"dockerode": "^
|
|
134
|
+
"dockerode": "^5.0.0",
|
|
135
135
|
"jest": "^30.0.0",
|
|
136
136
|
"nock": "13.5.6",
|
|
137
137
|
"prettier": "npm:wp-prettier@3.0.3",
|
|
138
|
-
"typescript": "^
|
|
138
|
+
"typescript": "^6.0.2"
|
|
139
139
|
},
|
|
140
140
|
"dependencies": {
|
|
141
|
-
"@apollo/client": "4.1.
|
|
141
|
+
"@apollo/client": "4.1.8",
|
|
142
142
|
"@automattic/vip-search-replace": "^2.0.0",
|
|
143
143
|
"@json2csv/plainjs": "^7.0.3",
|
|
144
144
|
"@wwa/single-line-log": "^1.1.4",
|
|
@@ -152,12 +152,12 @@
|
|
|
152
152
|
"ejs": "^5.0.1",
|
|
153
153
|
"enquirer": "2.4.1",
|
|
154
154
|
"fetch-retry": "^6.0.0",
|
|
155
|
-
"graphql": "16.13.
|
|
155
|
+
"graphql": "16.13.2",
|
|
156
156
|
"graphql-tag": "2.12.6",
|
|
157
|
-
"https-proxy-agent": "^
|
|
157
|
+
"https-proxy-agent": "^9.0.0",
|
|
158
158
|
"js-yaml": "^4.1.0",
|
|
159
159
|
"jwt-decode": "4.0.0",
|
|
160
|
-
"lando": "github:automattic/lando-cli#
|
|
160
|
+
"lando": "github:automattic/lando-cli#78d382fcf40357c4a4cebe4a3cfaef032eab743a",
|
|
161
161
|
"node-fetch": "^3.3.2",
|
|
162
162
|
"node-stream-zip": "1.15.0",
|
|
163
163
|
"open": "^11.0.0",
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
"shelljs": "^0.10.0",
|
|
167
167
|
"socket.io-client": "^4.5.3",
|
|
168
168
|
"socket.io-stream": "npm:@wwa/socket.io-stream@^0.10.0",
|
|
169
|
-
"socks-proxy-agent": "^
|
|
169
|
+
"socks-proxy-agent": "^10.0.0",
|
|
170
170
|
"ssh2": "1.17.0",
|
|
171
171
|
"tar": "^7.4.0",
|
|
172
172
|
"update-notifier": "7.3.1",
|
package/tsconfig.json
CHANGED
|
@@ -3,23 +3,17 @@
|
|
|
3
3
|
"lib": [ "ES2022" ],
|
|
4
4
|
"module": "nodenext",
|
|
5
5
|
"strict": true,
|
|
6
|
-
"esModuleInterop": true,
|
|
7
6
|
"skipLibCheck": true,
|
|
8
7
|
"forceConsistentCasingInFileNames": true,
|
|
9
8
|
"moduleResolution": "nodenext",
|
|
9
|
+
"types": [ "node", "jest" ],
|
|
10
10
|
|
|
11
|
-
// Target latest version of ECMAScript.
|
|
12
11
|
"target": "ES2022",
|
|
13
|
-
// Don't parse types from JS as TS doesn't play well with Flow-ish JS.
|
|
14
|
-
"allowJs": false,
|
|
15
12
|
// Don't emit; allow Babel to transform files.
|
|
16
13
|
"noEmit": true,
|
|
17
|
-
// Can't checkJs if we don't allowJs, so this remains false
|
|
18
|
-
"checkJs": false,
|
|
19
14
|
// Disallow features that require cross-file information for emit as we're using Babel
|
|
20
15
|
"isolatedModules": true,
|
|
21
16
|
"resolveJsonModule": true,
|
|
22
|
-
"baseUrl": ".",
|
|
23
17
|
"paths": {
|
|
24
18
|
"*": [ "./types/*", "./node_modules/@types/node/*" ]
|
|
25
19
|
},
|