@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.
@@ -0,0 +1,3 @@
1
+ import { CompilerContext } from '../context';
2
+ /** @deprecated */
3
+ export declare function buildWebApp(context: CompilerContext, rawDestination: string, cdnEntryName: string): Promise<void>;
@@ -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.87",
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.87",
22
- "@arcgis/components-build-utils": "4.33.0-next.87",
23
- "@arcgis/components-utils": "4.33.0-next.87",
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.87"
40
+ "@arcgis/lumina": "~4.33.0-next.88"
40
41
  }
41
42
  }