@arcgis/lumina-compiler 4.34.0-next.66 → 4.34.0-next.68
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/index.js +456 -451
- package/dist/publicTypes.d.ts +20 -1
- package/package.json +5 -5
package/dist/publicTypes.d.ts
CHANGED
|
@@ -232,7 +232,11 @@ export type ServeEnvironmentOptions = {
|
|
|
232
232
|
export type DetailedExtraDependency = {
|
|
233
233
|
/** @example "@arcgis/map-config-components" */
|
|
234
234
|
name: string;
|
|
235
|
-
/**
|
|
235
|
+
/**
|
|
236
|
+
* Overwrite the default CDN asset path for this dependency.
|
|
237
|
+
*
|
|
238
|
+
* @example (): string => `https://example.com/arcgis-components/builds/main/cdn/map-config-components/`
|
|
239
|
+
*/
|
|
236
240
|
getCdnUrl: (context: CompilerContext) => string;
|
|
237
241
|
};
|
|
238
242
|
export type PuppeteerTestingOptions = {
|
|
@@ -554,6 +558,21 @@ export type AssetHandlingOptions = {
|
|
|
554
558
|
* Any additional assets you wish to provide, besides those located in the
|
|
555
559
|
* assets/ directories
|
|
556
560
|
*
|
|
561
|
+
* @example
|
|
562
|
+
* ```ts
|
|
563
|
+
* import resolvePkg from "resolve-pkg";
|
|
564
|
+
*
|
|
565
|
+
* // ...
|
|
566
|
+
*
|
|
567
|
+
* extra: [
|
|
568
|
+
* {
|
|
569
|
+
* type: "directory",
|
|
570
|
+
* source: resolvePkg("@arcgis/arcade-sdk/dist/arcgis-arcade-editor")!,
|
|
571
|
+
* destination: "arcade-language",
|
|
572
|
+
* },
|
|
573
|
+
* ]
|
|
574
|
+
* ```
|
|
575
|
+
*
|
|
557
576
|
* @remarks
|
|
558
577
|
* If you need additional flexibility, you can call the
|
|
559
578
|
* `compilerContext.provideAssets()` utility at any time
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/lumina-compiler",
|
|
3
|
-
"version": "4.34.0-next.
|
|
3
|
+
"version": "4.34.0-next.68",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
],
|
|
19
19
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcgis/api-extractor": "4.34.0-next.
|
|
22
|
-
"@arcgis/components-build-utils": "4.34.0-next.
|
|
23
|
-
"@arcgis/toolkit": "4.34.0-next.
|
|
21
|
+
"@arcgis/api-extractor": "4.34.0-next.68",
|
|
22
|
+
"@arcgis/components-build-utils": "4.34.0-next.68",
|
|
23
|
+
"@arcgis/toolkit": "4.34.0-next.68",
|
|
24
24
|
"chalk": "^5.4.1",
|
|
25
25
|
"esbuild": "^0.25.5",
|
|
26
26
|
"glob": "^11.0.3",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"vitest-fail-on-console": "^0.7.1"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@arcgis/lumina": "~4.34.0-next.
|
|
34
|
+
"@arcgis/lumina": "~4.34.0-next.68",
|
|
35
35
|
"lit": "^3.3.0",
|
|
36
36
|
"typescript": "~5.8.3",
|
|
37
37
|
"vite": "^7.0.0",
|