@caweb/cli 1.16.12 → 1.16.13
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/commands/index.js +5 -4
- package/lib/cli.js +0 -7
- package/package.json +10 -10
package/commands/index.js
CHANGED
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
// These are default wp-env commands. No need to overwrite these commands
|
|
5
5
|
import WPEnv from '@wordpress/env';
|
|
6
6
|
const {
|
|
7
|
+
stop,
|
|
8
|
+
// reset is missing
|
|
7
9
|
clean,
|
|
8
|
-
logs,
|
|
9
10
|
run,
|
|
10
|
-
stop,
|
|
11
11
|
destroy,
|
|
12
|
-
|
|
12
|
+
// cleanup is missing
|
|
13
|
+
logs,
|
|
14
|
+
// status is missing
|
|
13
15
|
} = WPEnv;
|
|
14
16
|
|
|
15
17
|
/**
|
|
@@ -52,7 +54,6 @@ export {
|
|
|
52
54
|
clean,
|
|
53
55
|
logs,
|
|
54
56
|
run,
|
|
55
|
-
installPath,
|
|
56
57
|
start,
|
|
57
58
|
stop,
|
|
58
59
|
destroy,
|
package/lib/cli.js
CHANGED
|
@@ -250,13 +250,6 @@ function addWPEnvCommands(){
|
|
|
250
250
|
.allowExcessArguments(true)
|
|
251
251
|
.action( withSpinner(env.stop) )
|
|
252
252
|
|
|
253
|
-
// Install Path Command.
|
|
254
|
-
program.command('install-path')
|
|
255
|
-
.description('Get the path where all of the environment files are stored. This includes the Docker files, WordPress, PHPUnit files, and any sources that were downloaded.')
|
|
256
|
-
.allowUnknownOption(true)
|
|
257
|
-
.allowExcessArguments(true)
|
|
258
|
-
.action( withSpinner(env.installPath) )
|
|
259
|
-
|
|
260
253
|
// Clean Command.
|
|
261
254
|
program.command('clean')
|
|
262
255
|
.description(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caweb/cli",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.13",
|
|
4
4
|
"description": "CAWebPublishing Command Line Interface.",
|
|
5
5
|
"exports": "./lib/env.js",
|
|
6
6
|
"type": "module",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"config": {
|
|
43
43
|
"WP_VER": "6.9.4",
|
|
44
44
|
"PHP_VER": "8.4",
|
|
45
|
-
"CAWEB_VER": "1.13.
|
|
45
|
+
"CAWEB_VER": "1.13.4",
|
|
46
46
|
"DIVI_VER": "4.27.5",
|
|
47
|
-
"QUERY_MONITOR": "3.20.
|
|
47
|
+
"QUERY_MONITOR": "3.20.4",
|
|
48
48
|
"DEFAULTS": {
|
|
49
49
|
"FS_METHOD": "direct",
|
|
50
50
|
"WP_DEBUG": true,
|
|
@@ -66,26 +66,26 @@
|
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@caweb/a11y-webpack-plugin": "^2.1.6",
|
|
68
68
|
"@caweb/css-audit-webpack-plugin": "^2.1.5",
|
|
69
|
-
"@caweb/html-webpack-plugin": "^2.1.
|
|
69
|
+
"@caweb/html-webpack-plugin": "^2.1.17",
|
|
70
70
|
"@caweb/jshint-webpack-plugin": "^2.1.5",
|
|
71
71
|
"@caweb/webpack": "^2.0.5",
|
|
72
72
|
"@inquirer/prompts": "^8.3.2",
|
|
73
73
|
"@noble/hashes": "^2.0.1",
|
|
74
|
-
"@wordpress/create-block": "^4.
|
|
75
|
-
"@wordpress/env": "^11.
|
|
76
|
-
"axios": "^1.
|
|
74
|
+
"@wordpress/create-block": "^4.86.0",
|
|
75
|
+
"@wordpress/env": "^11.3.0",
|
|
76
|
+
"axios": "^1.14.0",
|
|
77
77
|
"axios-retry": "^4.5.0",
|
|
78
78
|
"chalk": "^5.6.2",
|
|
79
79
|
"commander": "^14.0.3",
|
|
80
80
|
"cross-spawn": "^7.0.6",
|
|
81
81
|
"crypto": "^1.0.1",
|
|
82
82
|
"deepmerge": "^4.3.1",
|
|
83
|
-
"docker-compose": "^1.
|
|
84
|
-
"fast-xml-parser": "^5.5.
|
|
83
|
+
"docker-compose": "^1.4.2",
|
|
84
|
+
"fast-xml-parser": "^5.5.10",
|
|
85
85
|
"fs-extra": "^11.3.4",
|
|
86
86
|
"html-to-json-parser": "^2.0.1",
|
|
87
87
|
"inquirer-select-pro": "^1.0.0-alpha.9",
|
|
88
|
-
"jsdom": "^29.0.
|
|
88
|
+
"jsdom": "^29.0.1",
|
|
89
89
|
"node-html-parser": "^7.1.0",
|
|
90
90
|
"ora": "^9.3.0",
|
|
91
91
|
"resolve-bin": "^1.0.1",
|