@forge/manifest 13.3.0-next.3 → 13.3.0-next.5
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/CHANGELOG.md
CHANGED
|
@@ -320,9 +320,14 @@
|
|
|
320
320
|
"type": "string",
|
|
321
321
|
"enum": [
|
|
322
322
|
"webpack",
|
|
323
|
-
"typescript"
|
|
323
|
+
"typescript",
|
|
324
|
+
"manual@2026"
|
|
324
325
|
]
|
|
325
326
|
},
|
|
327
|
+
"path": {
|
|
328
|
+
"description": "For manual packaging, path where the packaged runtime code is located.",
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
326
331
|
"extraFiles": {
|
|
327
332
|
"description": "A list of files to include in the Forge app package.",
|
|
328
333
|
"type": "array",
|
|
@@ -234,7 +234,11 @@ export interface Package {
|
|
|
234
234
|
/**
|
|
235
235
|
* Bundler to use for packaging the runtime code.
|
|
236
236
|
*/
|
|
237
|
-
bundler?: 'webpack' | 'typescript';
|
|
237
|
+
bundler?: 'webpack' | 'typescript' | 'manual@2026';
|
|
238
|
+
/**
|
|
239
|
+
* For manual packaging, path where the packaged runtime code is located.
|
|
240
|
+
*/
|
|
241
|
+
path?: string;
|
|
238
242
|
/**
|
|
239
243
|
* A list of files to include in the Forge app package.
|
|
240
244
|
*/
|
|
@@ -320,9 +320,14 @@
|
|
|
320
320
|
"type": "string",
|
|
321
321
|
"enum": [
|
|
322
322
|
"webpack",
|
|
323
|
-
"typescript"
|
|
323
|
+
"typescript",
|
|
324
|
+
"manual@2026"
|
|
324
325
|
]
|
|
325
326
|
},
|
|
327
|
+
"path": {
|
|
328
|
+
"description": "For manual packaging, path where the packaged runtime code is located.",
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
326
331
|
"extraFiles": {
|
|
327
332
|
"description": "A list of files to include in the Forge app package.",
|
|
328
333
|
"type": "array",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1040,7 +1040,11 @@ export interface Package {
|
|
|
1040
1040
|
/**
|
|
1041
1041
|
* Bundler to use for packaging the runtime code.
|
|
1042
1042
|
*/
|
|
1043
|
-
bundler?: 'webpack' | 'typescript';
|
|
1043
|
+
bundler?: 'webpack' | 'typescript' | 'manual@2026';
|
|
1044
|
+
/**
|
|
1045
|
+
* For manual packaging, path where the packaged runtime code is located.
|
|
1046
|
+
*/
|
|
1047
|
+
path?: string;
|
|
1044
1048
|
/**
|
|
1045
1049
|
* A list of files to include in the Forge app package.
|
|
1046
1050
|
*/
|