@automattic/vip 2.36.3 → 2.37.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/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@automattic/vip",
3
- "version": "2.36.3",
3
+ "version": "2.37.0",
4
4
  "description": "The VIP Javascript library & CLI",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "vip": "dist/bin/vip.js",
8
8
  "vip-app": "dist/bin/vip-app.js",
9
9
  "vip-app-list": "dist/bin/vip-app-list.js",
10
+ "vip-app-deploy": "dist/bin/vip-app-deploy.js",
10
11
  "vip-backup": "dist/bin/vip-backup.js",
11
12
  "vip-backup-db": "dist/bin/vip-backup-db.js",
12
13
  "vip-cache": "dist/bin/vip-cache.js",
@@ -105,8 +106,8 @@
105
106
  "devDependencies": {
106
107
  "@automattic/eslint-plugin-wpvip": "0.9.1",
107
108
  "@babel/cli": "7.23.4",
108
- "@babel/core": "7.23.5",
109
- "@babel/preset-env": "7.23.5",
109
+ "@babel/core": "7.23.7",
110
+ "@babel/preset-env": "7.23.8",
110
111
  "@babel/preset-typescript": "7.23.3",
111
112
  "@jest/globals": "^29.7.0",
112
113
  "@jest/test-sequencer": "^29.7.0",
@@ -118,6 +119,7 @@
118
119
  "@types/ejs": "^3.1.5",
119
120
  "@types/jest": "^29.5.8",
120
121
  "@types/js-yaml": "^4.0.9",
122
+ "@types/node": "^18.19.5",
121
123
  "@types/node-fetch": "^2.6.9",
122
124
  "@types/proxy-from-env": "^1.0.4",
123
125
  "@types/semver": "^7.5.5",
@@ -129,7 +131,7 @@
129
131
  "dockerode": "^4.0.0",
130
132
  "eslint": "^8.35.0",
131
133
  "jest": "^29.7.0",
132
- "nock": "13.4.0",
134
+ "nock": "13.5.0",
133
135
  "prettier": "npm:wp-prettier@2.8.5",
134
136
  "rimraf": "5.0.5",
135
137
  "typescript": "^5.2.2"
@@ -158,7 +160,7 @@
158
160
  "jwt-decode": "4.0.0",
159
161
  "lando": "github:automattic/lando-cli.git#25fcd83",
160
162
  "node-fetch": "^2.6.1",
161
- "open": "^9.1.0",
163
+ "open": "^10.0.0",
162
164
  "proxy-from-env": "^1.1.0",
163
165
  "semver": "7.5.4",
164
166
  "shelljs": "^0.8.5",
package/tsconfig.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "lib": [ "es2021" ],
3
+ "lib": [ "ES2022" ],
4
4
  "module": "node16",
5
5
  "strict": true,
6
6
  "esModuleInterop": true,
@@ -9,7 +9,7 @@
9
9
  "moduleResolution": "node16",
10
10
 
11
11
  // Target latest version of ECMAScript.
12
- "target": "esnext",
12
+ "target": "ES2022",
13
13
  // Don't parse types from JS as TS doesn't play well with Flow-ish JS.
14
14
  "allowJs": false,
15
15
  // Don't emit; allow Babel to transform files.