@arcgis/lumina-compiler 4.33.0-next.123 → 4.33.0-next.125
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/loaders.d.ts +0 -4
- package/dist/dependencies/testSetupFiles.d.ts +0 -8
- package/dist/index.js +1266 -1221
- package/dist/plugins/buildCdn.d.ts +4 -0
- package/dist/testing/index.js +83 -77
- package/package.json +5 -5
|
@@ -2,8 +2,4 @@ import { CompilerContext } from '../context';
|
|
|
2
2
|
import { ResolvedDependencyComponents } from './discover';
|
|
3
3
|
import { DependencyInjectionResult } from './utils';
|
|
4
4
|
export declare function makeLoaders(context: CompilerContext): Promise<DependencyInjectionResult[]>;
|
|
5
|
-
export declare const silenceLitWarnings: {
|
|
6
|
-
optimizableImports: never[];
|
|
7
|
-
javascriptCode: string[];
|
|
8
|
-
};
|
|
9
5
|
export declare function computeServeOnlyDependencies(context: CompilerContext): Promise<readonly ResolvedDependencyComponents[]>;
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
import { CompilerContext } from '../context';
|
|
2
|
-
export declare const testLitSetupFileName = "/@arcgis/lumina-compiler/testLitSetupFile";
|
|
3
|
-
/**
|
|
4
|
-
* For browser tests, this file lazy-loads all dependencies, and then the
|
|
5
|
-
* current package itself.
|
|
6
|
-
* It also does misc test setup logic (mocking console, setting timeouts,
|
|
7
|
-
* etc).
|
|
8
|
-
*/
|
|
9
2
|
export declare const testSetupFileName = "/@arcgis/lumina-compiler/testSetupFile";
|
|
10
3
|
export declare const testSetupFileNames: string[];
|
|
11
|
-
export declare const litTestSetupFileContent: string;
|
|
12
4
|
/**
|
|
13
5
|
* Get the entrypoint code for lazy-loading all components and their
|
|
14
6
|
* dependencies when running a web component test in the browser.
|