@arcgis/lumina-compiler 4.33.0-next.97 → 4.33.0-next.98
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.
|
@@ -5,6 +5,7 @@ export type ResolvedDependencyComponents = {
|
|
|
5
5
|
readonly packageName: string;
|
|
6
6
|
readonly type: "@arcgis/lumina" | "stencil" | "unknown";
|
|
7
7
|
readonly components: Readonly<Record<string, ResolvedDependencyComponent>>;
|
|
8
|
+
readonly cdnUrl?: string;
|
|
8
9
|
};
|
|
9
10
|
export type ResolvedDependencyComponent = ModulePath & {
|
|
10
11
|
/**
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { DependencyInjectionMode, DependencyInjectionResult } from './utils';
|
|
2
|
-
|
|
2
|
+
import { ResolvedDependencyComponents } from './discover';
|
|
3
|
+
export declare function makeLuminaLoader(baseUrl: string, dependency: ResolvedDependencyComponents, mode: DependencyInjectionMode, index: number): Promise<DependencyInjectionResult>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DependencyInjectionMode, DependencyInjectionResult } from './utils';
|
|
2
|
-
|
|
2
|
+
import { ResolvedDependencyComponents } from './discover';
|
|
3
|
+
export declare function makeStencilLoader(baseUrl: string, dependency: ResolvedDependencyComponents, mode: DependencyInjectionMode, index: number): Promise<DependencyInjectionResult[]>;
|
|
3
4
|
export declare function findCdnFiles(distDirectory: string): Promise<{
|
|
4
5
|
readonly cdnName: string;
|
|
5
6
|
readonly hasCss: boolean;
|