@embroider/compat 3.5.1-unstable.bdf4aae → 3.5.1-unstable.c8b5bd4
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/package.json +4 -4
- package/src/compat-app-builder.d.ts +2 -12
- package/src/compat-app-builder.js +20 -390
- package/src/compat-app-builder.js.map +1 -1
- package/src/compat-app.d.ts +0 -2
- package/src/compat-app.js +22 -7
- package/src/compat-app.js.map +1 -1
- package/src/http-audit.js +4 -1
- package/src/http-audit.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@embroider/compat",
|
|
3
|
-
"version": "3.5.1-unstable.
|
|
3
|
+
"version": "3.5.1-unstable.c8b5bd4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Backward compatibility layer for the Embroider build system.",
|
|
6
6
|
"repository": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@babel/preset-env": "^7.14.5",
|
|
31
31
|
"@babel/runtime": "^7.18.6",
|
|
32
32
|
"@babel/traverse": "^7.14.5",
|
|
33
|
-
"@embroider/macros": "1.16.2-unstable.
|
|
33
|
+
"@embroider/macros": "1.16.2-unstable.c8b5bd4",
|
|
34
34
|
"@types/babel__code-frame": "^7.0.2",
|
|
35
35
|
"@types/yargs": "^17.0.3",
|
|
36
36
|
"assert-never": "^1.1.0",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"yargs": "^17.0.1"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@embroider/core": "3.4.10-unstable.
|
|
69
|
+
"@embroider/core": "3.4.10-unstable.c8b5bd4",
|
|
70
70
|
"@embroider/sample-transforms": "workspace:*",
|
|
71
71
|
"@embroider/test-support": "workspace:*",
|
|
72
72
|
"@glimmer/syntax": "^0.84.3",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"typescript": "^5.4.5"
|
|
92
92
|
},
|
|
93
93
|
"peerDependencies": {
|
|
94
|
-
"@embroider/core": "3.4.10-unstable.
|
|
94
|
+
"@embroider/core": "3.4.10-unstable.c8b5bd4"
|
|
95
95
|
},
|
|
96
96
|
"engines": {
|
|
97
97
|
"node": "12.* || 14.* || >= 16"
|
|
@@ -19,7 +19,6 @@ export declare class CompatAppBuilder {
|
|
|
19
19
|
constructor(root: string, origAppPackage: Package, appPackageWithMovedDeps: Package, options: Required<Options>, compatApp: CompatApp, configTree: V1Config, contentForTree: ContentForConfig, synthVendor: Package, synthStyles: Package);
|
|
20
20
|
private fastbootJSSrcDir;
|
|
21
21
|
private extractAssets;
|
|
22
|
-
private findTestemAsset;
|
|
23
22
|
private activeAddonChildren;
|
|
24
23
|
private get allActiveAddons();
|
|
25
24
|
private isActiveAddon;
|
|
@@ -31,10 +30,7 @@ export declare class CompatAppBuilder {
|
|
|
31
30
|
private rootURL;
|
|
32
31
|
private activeRules;
|
|
33
32
|
private resolverConfig;
|
|
34
|
-
private scriptPriority;
|
|
35
33
|
private get resolvableExtensionsPattern();
|
|
36
|
-
private impliedAssets;
|
|
37
|
-
private impliedAddonAssets;
|
|
38
34
|
private babelConfig;
|
|
39
35
|
private insertEmberApp;
|
|
40
36
|
private findActiveAddons;
|
|
@@ -43,13 +39,13 @@ export declare class CompatAppBuilder {
|
|
|
43
39
|
private get fastbootConfig();
|
|
44
40
|
private engines;
|
|
45
41
|
private updateAppJS;
|
|
42
|
+
private get staticAppPathsPattern();
|
|
46
43
|
private prepareAsset;
|
|
47
44
|
private prepareAssets;
|
|
48
45
|
private assetIsValid;
|
|
49
46
|
private updateOnDiskAsset;
|
|
50
47
|
private updateInMemoryAsset;
|
|
51
48
|
private updateBuiltEmberAsset;
|
|
52
|
-
private updateConcatenatedAsset;
|
|
53
49
|
private updateAssets;
|
|
54
50
|
private gatherAssets;
|
|
55
51
|
private firstBuild;
|
|
@@ -61,14 +57,8 @@ export declare class CompatAppBuilder {
|
|
|
61
57
|
private addResolverConfig;
|
|
62
58
|
private addContentForConfig;
|
|
63
59
|
private addEmberEnvConfig;
|
|
64
|
-
private
|
|
65
|
-
private splitRoute;
|
|
66
|
-
private topAppJSAsset;
|
|
67
|
-
private get staticAppPathsPattern();
|
|
68
|
-
private requiredOtherFiles;
|
|
69
|
-
private appJSAsset;
|
|
60
|
+
private addAppBoot;
|
|
70
61
|
private importPaths;
|
|
71
|
-
private routeEntrypoint;
|
|
72
62
|
private testJSEntrypoint;
|
|
73
63
|
}
|
|
74
64
|
interface TreeNames {
|