@arcgis/lumina-compiler 4.33.0-next.87 → 4.33.0-next.88
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/dist/dependencies/utils.d.ts +1 -1
- package/dist/index.js +1721 -1682
- package/dist/plugins/buildWebApp.d.ts +3 -0
- package/dist/publicTypes.d.ts +12 -0
- package/package.json +6 -5
package/dist/publicTypes.d.ts
CHANGED
|
@@ -71,6 +71,18 @@ export type BuildOptions = {
|
|
|
71
71
|
* Configuration for CDN build.
|
|
72
72
|
*/
|
|
73
73
|
readonly cdn?: BuildCdnOptions;
|
|
74
|
+
readonly webApp?: {
|
|
75
|
+
/**
|
|
76
|
+
* If set, will produce a web app build, based on index.html files and
|
|
77
|
+
* cdn build.
|
|
78
|
+
*
|
|
79
|
+
* @default undefined
|
|
80
|
+
* @example "www"
|
|
81
|
+
* @see [Based on Stencil's www build](https://stenciljs.com/docs/www)
|
|
82
|
+
* @deprecated Use Storybook build or separate test app package.
|
|
83
|
+
*/
|
|
84
|
+
readonly destination?: string;
|
|
85
|
+
};
|
|
74
86
|
/**
|
|
75
87
|
* Options for externalizing or bundling in dependencies.
|
|
76
88
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/lumina-compiler",
|
|
3
|
-
"version": "4.33.0-next.
|
|
3
|
+
"version": "4.33.0-next.88",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -18,11 +18,12 @@
|
|
|
18
18
|
],
|
|
19
19
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcgis/api-extractor": "4.33.0-next.
|
|
22
|
-
"@arcgis/components-build-utils": "4.33.0-next.
|
|
23
|
-
"@arcgis/components-utils": "4.33.0-next.
|
|
21
|
+
"@arcgis/api-extractor": "4.33.0-next.88",
|
|
22
|
+
"@arcgis/components-build-utils": "4.33.0-next.88",
|
|
23
|
+
"@arcgis/components-utils": "4.33.0-next.88",
|
|
24
24
|
"chalk": "^5.3.0",
|
|
25
25
|
"esbuild": "^0.24.0",
|
|
26
|
+
"glob": "^11.0.0",
|
|
26
27
|
"js-beautify": "^1.15.1",
|
|
27
28
|
"mime-types": "^2.1.35",
|
|
28
29
|
"rollup": "^4.24.0",
|
|
@@ -36,6 +37,6 @@
|
|
|
36
37
|
"vitest-fail-on-console": "^0.7.1"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {
|
|
39
|
-
"@arcgis/lumina": "~4.33.0-next.
|
|
40
|
+
"@arcgis/lumina": "~4.33.0-next.88"
|
|
40
41
|
}
|
|
41
42
|
}
|