@ms-cloudpack/cli 0.77.19 → 0.77.20

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/cli",
3
- "version": "0.77.19",
3
+ "version": "0.77.20",
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.65.1",
22
- "@ms-cloudpack/app-server": "^0.20.25",
23
- "@ms-cloudpack/bundler": "^0.26.10",
24
- "@ms-cloudpack/bundler-capabilities": "^0.4.4",
25
- "@ms-cloudpack/common-types": "^0.31.1",
26
- "@ms-cloudpack/config": "^0.38.14",
27
- "@ms-cloudpack/create-express-app": "^1.10.59",
21
+ "@ms-cloudpack/api-server": "^0.65.2",
22
+ "@ms-cloudpack/app-server": "^0.20.26",
23
+ "@ms-cloudpack/bundler": "^0.26.11",
24
+ "@ms-cloudpack/bundler-capabilities": "^0.4.5",
25
+ "@ms-cloudpack/common-types": "^0.31.2",
26
+ "@ms-cloudpack/config": "^0.38.15",
27
+ "@ms-cloudpack/create-express-app": "^1.10.60",
28
28
  "@ms-cloudpack/environment": "^0.1.1",
29
- "@ms-cloudpack/file-watcher": "^0.4.17",
29
+ "@ms-cloudpack/file-watcher": "^0.4.18",
30
30
  "@ms-cloudpack/json-utilities": "^0.1.11",
31
- "@ms-cloudpack/link-proxy": "^0.2.47",
32
- "@ms-cloudpack/overlay": "^0.19.43",
33
- "@ms-cloudpack/package-utilities": "^13.1.4",
31
+ "@ms-cloudpack/link-proxy": "^0.2.48",
32
+ "@ms-cloudpack/overlay": "^0.19.44",
33
+ "@ms-cloudpack/package-utilities": "^13.1.5",
34
34
  "@ms-cloudpack/path-string-parsing": "^1.2.7",
35
- "@ms-cloudpack/path-utilities": "^3.1.30",
36
- "@ms-cloudpack/remote-cache": "^0.11.50",
37
- "@ms-cloudpack/setup-utilities": "^0.5.51",
35
+ "@ms-cloudpack/path-utilities": "^3.1.31",
36
+ "@ms-cloudpack/remote-cache": "^0.11.51",
37
+ "@ms-cloudpack/setup-utilities": "^0.5.52",
38
38
  "@ms-cloudpack/task-reporter": "^0.17.4",
39
- "@ms-cloudpack/telemetry": "^0.11.50",
39
+ "@ms-cloudpack/telemetry": "^0.11.51",
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.31.1",
52
+ "@ms-cloudpack/common-types": "^0.31.2",
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",
@@ -1180,17 +1180,28 @@
1180
1180
  "type": "object",
1181
1181
  "properties": {
1182
1182
  "extensions": {
1183
- "type": "array",
1184
- "items": {
1185
- "type": "string"
1186
- }
1183
+ "anyOf": [
1184
+ {
1185
+ "type": "array",
1186
+ "items": {
1187
+ "type": "string"
1188
+ }
1189
+ },
1190
+ {
1191
+ "type": "object",
1192
+ "additionalProperties": {
1193
+ "type": "boolean"
1194
+ },
1195
+ "description": "Construct a type with a set of properties K of type T"
1196
+ }
1197
+ ]
1187
1198
  }
1188
1199
  },
1189
1200
  "required": [
1190
1201
  "extensions"
1191
1202
  ],
1192
1203
  "additionalProperties": false,
1193
- "description": "Inlines assets into the bundle. Options: List of file extensions to inline. Do not include the leading dot."
1204
+ "description": "Inlines assets into the bundle.\n\nExtensions can be specified as:\n- Array: `['avif']` - use only these extensions (replaces defaults)\n- Object: `{ 'svg': false, 'avif': true }` - modify defaults (remove svg, add avif)\n\nDo not include the leading dot."
1194
1205
  },
1195
1206
  {
1196
1207
  "type": "boolean"
@@ -1181,17 +1181,28 @@
1181
1181
  "type": "object",
1182
1182
  "properties": {
1183
1183
  "extensions": {
1184
- "type": "array",
1185
- "items": {
1186
- "type": "string"
1187
- }
1184
+ "anyOf": [
1185
+ {
1186
+ "type": "array",
1187
+ "items": {
1188
+ "type": "string"
1189
+ }
1190
+ },
1191
+ {
1192
+ "type": "object",
1193
+ "additionalProperties": {
1194
+ "type": "boolean"
1195
+ },
1196
+ "description": "Construct a type with a set of properties K of type T"
1197
+ }
1198
+ ]
1188
1199
  }
1189
1200
  },
1190
1201
  "required": [
1191
1202
  "extensions"
1192
1203
  ],
1193
1204
  "additionalProperties": false,
1194
- "description": "Inlines assets into the bundle. Options: List of file extensions to inline. Do not include the leading dot."
1205
+ "description": "Inlines assets into the bundle.\n\nExtensions can be specified as:\n- Array: `['avif']` - use only these extensions (replaces defaults)\n- Object: `{ 'svg': false, 'avif': true }` - modify defaults (remove svg, add avif)\n\nDo not include the leading dot."
1195
1206
  },
1196
1207
  {
1197
1208
  "type": "boolean"