@ms-cloudpack/cli 0.77.18 → 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 +17 -17
- package/schema/AppConfig.json +23 -5
- package/schema/UserConfig.json +23 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/cli",
|
|
3
|
-
"version": "0.77.
|
|
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.
|
|
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.31.
|
|
26
|
-
"@ms-cloudpack/config": "^0.38.
|
|
27
|
-
"@ms-cloudpack/create-express-app": "^1.10.
|
|
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.
|
|
29
|
+
"@ms-cloudpack/file-watcher": "^0.4.18",
|
|
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.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.
|
|
36
|
-
"@ms-cloudpack/remote-cache": "^0.11.
|
|
37
|
-
"@ms-cloudpack/setup-utilities": "^0.5.
|
|
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.
|
|
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.
|
|
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",
|
package/schema/AppConfig.json
CHANGED
|
@@ -1180,17 +1180,28 @@
|
|
|
1180
1180
|
"type": "object",
|
|
1181
1181
|
"properties": {
|
|
1182
1182
|
"extensions": {
|
|
1183
|
-
"
|
|
1184
|
-
|
|
1185
|
-
|
|
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
|
|
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"
|
|
@@ -1343,6 +1354,13 @@
|
|
|
1343
1354
|
"type": "string"
|
|
1344
1355
|
},
|
|
1345
1356
|
"description": "Folder names or directory paths where to find modules.\n\n**Note: This completely replaces the default node_modules lookup. To keep node_modules, include it explicitly: [\"node_modules\", \"{configDir}/store\"]**\n\nAbsolute and relative paths can both be used, but be aware that they will behave a bit differently.\n\nA relative path will be scanned similarly to how Node scans for node_modules, by looking through the current directory as well as its ancestors (i.e. ./node_modules, ../node_modules, and on).\n\nWith an absolute path, it will only search in the given directory.\n\nTemplate variables:\n- {configDir} can be used to build paths relative to the configuration directory. For example: {configDir}/store resolves to an absolute path pointing to the 'store' subdirectory within the directory containing the configuration file.\n\n Restrictions: - The {configDir} template must appear at the beginning of the path - Only one {configDir} template is allowed per path - Invalid: \"some/path/{configDir}\" or \"{configDir}/{configDir}/nested\" - Valid: \"{configDir}/store\", \"{configDir}/components\""
|
|
1357
|
+
},
|
|
1358
|
+
"dedupe": {
|
|
1359
|
+
"type": "array",
|
|
1360
|
+
"items": {
|
|
1361
|
+
"type": "string"
|
|
1362
|
+
},
|
|
1363
|
+
"description": "Array of module names to enforce consistent resolution using the application's module resolution strategy.\n\nPrevents multiple instances of the same package when dealing with duplicate dependencies that may arise from package hoisting or linked dependencies in monorepo setups.\n\nExample: [\"react\", \"lodash\"] ensures these packages are always resolved using the same resolution path that the application would normally use.\n\nThis settings will be ignored for inlinedDependencies."
|
|
1346
1364
|
}
|
|
1347
1365
|
},
|
|
1348
1366
|
"additionalProperties": false
|
package/schema/UserConfig.json
CHANGED
|
@@ -1181,17 +1181,28 @@
|
|
|
1181
1181
|
"type": "object",
|
|
1182
1182
|
"properties": {
|
|
1183
1183
|
"extensions": {
|
|
1184
|
-
"
|
|
1185
|
-
|
|
1186
|
-
|
|
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
|
|
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"
|
|
@@ -1344,6 +1355,13 @@
|
|
|
1344
1355
|
"type": "string"
|
|
1345
1356
|
},
|
|
1346
1357
|
"description": "Folder names or directory paths where to find modules.\n\n**Note: This completely replaces the default node_modules lookup. To keep node_modules, include it explicitly: [\"node_modules\", \"{configDir}/store\"]**\n\nAbsolute and relative paths can both be used, but be aware that they will behave a bit differently.\n\nA relative path will be scanned similarly to how Node scans for node_modules, by looking through the current directory as well as its ancestors (i.e. ./node_modules, ../node_modules, and on).\n\nWith an absolute path, it will only search in the given directory.\n\nTemplate variables:\n- {configDir} can be used to build paths relative to the configuration directory. For example: {configDir}/store resolves to an absolute path pointing to the 'store' subdirectory within the directory containing the configuration file.\n\n Restrictions: - The {configDir} template must appear at the beginning of the path - Only one {configDir} template is allowed per path - Invalid: \"some/path/{configDir}\" or \"{configDir}/{configDir}/nested\" - Valid: \"{configDir}/store\", \"{configDir}/components\""
|
|
1358
|
+
},
|
|
1359
|
+
"dedupe": {
|
|
1360
|
+
"type": "array",
|
|
1361
|
+
"items": {
|
|
1362
|
+
"type": "string"
|
|
1363
|
+
},
|
|
1364
|
+
"description": "Array of module names to enforce consistent resolution using the application's module resolution strategy.\n\nPrevents multiple instances of the same package when dealing with duplicate dependencies that may arise from package hoisting or linked dependencies in monorepo setups.\n\nExample: [\"react\", \"lodash\"] ensures these packages are always resolved using the same resolution path that the application would normally use.\n\nThis settings will be ignored for inlinedDependencies."
|
|
1347
1365
|
}
|
|
1348
1366
|
},
|
|
1349
1367
|
"additionalProperties": false
|