@anaemia/core 0.5.0 → 0.5.2
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.
|
@@ -23,7 +23,7 @@ function chunkAssetTags(chunk) {
|
|
|
23
23
|
return { scripts, styles };
|
|
24
24
|
}
|
|
25
25
|
export function getRouteAssetTags(manifest, activeChunk) {
|
|
26
|
-
const chunkNames = ["client", "commons", "vendors"];
|
|
26
|
+
const chunkNames = ["client", "framework", "commons", "vendors"];
|
|
27
27
|
if (activeChunk && activeChunk !== "client")
|
|
28
28
|
chunkNames.push(activeChunk);
|
|
29
29
|
return chunkNames.reduce((assetTags, chunkName) => {
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@ function chunkAssetTags(chunk: ChunkAssets | undefined): { scripts: string; styl
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
export function getRouteAssetTags(manifest: RouteManifest, activeChunk: string): { scripts: string; styles: string } {
|
|
33
|
-
const chunkNames = ["client", "commons", "vendors"];
|
|
33
|
+
const chunkNames = ["client", "framework", "commons", "vendors"];
|
|
34
34
|
if (activeChunk && activeChunk !== "client") chunkNames.push(activeChunk);
|
|
35
35
|
|
|
36
36
|
return chunkNames.reduce(
|
package/tsconfig.json
CHANGED
|
File without changes
|