@ms-cloudpack/cli 0.77.17 → 0.77.18
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 +17 -17
- package/schema/AppConfig.json +20 -1
- package/schema/UserConfig.json +20 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/cli",
|
|
3
|
-
"version": "0.77.
|
|
3
|
+
"version": "0.77.18",
|
|
4
4
|
"description": "The Cloudpack command line interface - a tool for managing fast inner and outer looping in web apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -18,25 +18,25 @@
|
|
|
18
18
|
"cloudpack": "./bin/cloudpack.js"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@ms-cloudpack/api-server": "^0.
|
|
22
|
-
"@ms-cloudpack/app-server": "^0.20.
|
|
23
|
-
"@ms-cloudpack/bundler": "^0.26.
|
|
24
|
-
"@ms-cloudpack/bundler-capabilities": "^0.4.
|
|
25
|
-
"@ms-cloudpack/common-types": "^0.
|
|
26
|
-
"@ms-cloudpack/config": "^0.38.
|
|
27
|
-
"@ms-cloudpack/create-express-app": "^1.10.
|
|
21
|
+
"@ms-cloudpack/api-server": "^0.65.0",
|
|
22
|
+
"@ms-cloudpack/app-server": "^0.20.24",
|
|
23
|
+
"@ms-cloudpack/bundler": "^0.26.9",
|
|
24
|
+
"@ms-cloudpack/bundler-capabilities": "^0.4.3",
|
|
25
|
+
"@ms-cloudpack/common-types": "^0.31.0",
|
|
26
|
+
"@ms-cloudpack/config": "^0.38.13",
|
|
27
|
+
"@ms-cloudpack/create-express-app": "^1.10.58",
|
|
28
28
|
"@ms-cloudpack/environment": "^0.1.1",
|
|
29
|
-
"@ms-cloudpack/file-watcher": "^0.4.
|
|
29
|
+
"@ms-cloudpack/file-watcher": "^0.4.16",
|
|
30
30
|
"@ms-cloudpack/json-utilities": "^0.1.11",
|
|
31
|
-
"@ms-cloudpack/link-proxy": "^0.2.
|
|
32
|
-
"@ms-cloudpack/overlay": "^0.19.
|
|
33
|
-
"@ms-cloudpack/package-utilities": "^13.1.
|
|
31
|
+
"@ms-cloudpack/link-proxy": "^0.2.46",
|
|
32
|
+
"@ms-cloudpack/overlay": "^0.19.42",
|
|
33
|
+
"@ms-cloudpack/package-utilities": "^13.1.3",
|
|
34
34
|
"@ms-cloudpack/path-string-parsing": "^1.2.7",
|
|
35
|
-
"@ms-cloudpack/path-utilities": "^3.1.
|
|
36
|
-
"@ms-cloudpack/remote-cache": "^0.11.
|
|
37
|
-
"@ms-cloudpack/setup-utilities": "^0.5.
|
|
35
|
+
"@ms-cloudpack/path-utilities": "^3.1.29",
|
|
36
|
+
"@ms-cloudpack/remote-cache": "^0.11.49",
|
|
37
|
+
"@ms-cloudpack/setup-utilities": "^0.5.50",
|
|
38
38
|
"@ms-cloudpack/task-reporter": "^0.17.4",
|
|
39
|
-
"@ms-cloudpack/telemetry": "^0.11.
|
|
39
|
+
"@ms-cloudpack/telemetry": "^0.11.49",
|
|
40
40
|
"@yarnpkg/lockfile": "^1.1.0",
|
|
41
41
|
"commander": "^14.0.0",
|
|
42
42
|
"cross-spawn": "^7.0.3",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"workspace-tools": "^0.38.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@ms-cloudpack/common-types": "^0.
|
|
52
|
+
"@ms-cloudpack/common-types": "^0.31.0",
|
|
53
53
|
"@ms-cloudpack/common-types-browser": "^0.6.3",
|
|
54
54
|
"@ms-cloudpack/eslint-plugin-internal": "^0.0.1",
|
|
55
55
|
"@ms-cloudpack/scripts": "^0.0.1",
|
package/schema/AppConfig.json
CHANGED
|
@@ -1212,7 +1212,26 @@
|
|
|
1212
1212
|
]
|
|
1213
1213
|
},
|
|
1214
1214
|
"density": {
|
|
1215
|
-
"
|
|
1215
|
+
"anyOf": [
|
|
1216
|
+
{
|
|
1217
|
+
"type": "boolean"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"type": "object",
|
|
1221
|
+
"properties": {
|
|
1222
|
+
"entries": {
|
|
1223
|
+
"type": "array",
|
|
1224
|
+
"items": {
|
|
1225
|
+
"type": "string"
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
"required": [
|
|
1230
|
+
"entries"
|
|
1231
|
+
],
|
|
1232
|
+
"additionalProperties": false
|
|
1233
|
+
}
|
|
1234
|
+
]
|
|
1216
1235
|
},
|
|
1217
1236
|
"alias": {
|
|
1218
1237
|
"anyOf": [
|
package/schema/UserConfig.json
CHANGED
|
@@ -1213,7 +1213,26 @@
|
|
|
1213
1213
|
]
|
|
1214
1214
|
},
|
|
1215
1215
|
"density": {
|
|
1216
|
-
"
|
|
1216
|
+
"anyOf": [
|
|
1217
|
+
{
|
|
1218
|
+
"type": "boolean"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"type": "object",
|
|
1222
|
+
"properties": {
|
|
1223
|
+
"entries": {
|
|
1224
|
+
"type": "array",
|
|
1225
|
+
"items": {
|
|
1226
|
+
"type": "string"
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
"required": [
|
|
1231
|
+
"entries"
|
|
1232
|
+
],
|
|
1233
|
+
"additionalProperties": false
|
|
1234
|
+
}
|
|
1235
|
+
]
|
|
1217
1236
|
},
|
|
1218
1237
|
"alias": {
|
|
1219
1238
|
"anyOf": [
|