@eui/tools 6.12.42 → 6.12.43
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/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/csdr/audit/styles.js +4 -0
- package/scripts/csdr/init/remotes/16.x/base/angular.json +1 -1
- package/scripts/csdr/init/remotes/16.x/base/tsconfig.app.json +1 -0
- package/scripts/utils/notification/config.js +2 -0
- package/scripts/utils/pre-build/elements.js +6 -11
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.12.
|
|
1
|
+
6.12.43
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.12.43 (2023-08-17)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapt build script for mfe generic portal - EUI-7860 [EUI-7860](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7860) ([5505afbd](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5505afbdde74f08d2d6ec62e5546585c5cc12fca))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.12.42 (2023-08-16)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -662,6 +662,10 @@ module.exports.audit = (pkg) => {
|
|
|
662
662
|
|
|
663
663
|
// getting gates
|
|
664
664
|
let gates;
|
|
665
|
+
if (!configOptions.AUDIT_STYLES_GATES) {
|
|
666
|
+
return;
|
|
667
|
+
}
|
|
668
|
+
|
|
665
669
|
const euiVersionGates = configOptions.AUDIT_STYLES_GATES[euiVersion];
|
|
666
670
|
const allNewGates = configOptions.AUDIT_STYLES_GATES['ALL_NEW'];
|
|
667
671
|
|
|
@@ -40,19 +40,14 @@ module.exports.preBuild = (pkg, build = false) => {
|
|
|
40
40
|
tools.logInfo(`Registering local package on element : ${localPkg.name}`);
|
|
41
41
|
const pathBase = './packages';
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
tsConfig['compilerOptions']['paths'][`${localPkg.npmPkgScope}/${localPkg.npmPkgName}/*`] = [`${pathBase}/${localPkg.folder || localPkg.name}/src`];
|
|
46
|
-
} else {
|
|
47
|
-
tsConfig['compilerOptions']['paths'][`${localPkg.npmPkgScope}/${localPkg.npmPkgName}`] = [`${pathBase}/${localPkg.folder || localPkg.name}`];
|
|
48
|
-
tsConfig['compilerOptions']['paths'][`${localPkg.npmPkgScope}/${localPkg.npmPkgName}/*`] = [`${pathBase}/${localPkg.folder || localPkg.name}/*`];
|
|
49
|
-
}
|
|
43
|
+
tsConfig['compilerOptions']['paths'][`${localPkg.npmPkgScope}/${localPkg.npmPkgName}`] = [`${pathBase}/${localPkg.folder || localPkg.name}/dist`];
|
|
44
|
+
tsConfig['compilerOptions']['paths'][`${localPkg.npmPkgScope}/${localPkg.npmPkgName}/*`] = [`${pathBase}/${localPkg.folder || localPkg.name}/dist`];
|
|
50
45
|
}
|
|
51
46
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
registerPkg(
|
|
55
|
-
}
|
|
47
|
+
if (pkg.registerLocalRootPkg && pkg.skeletonConfig) {
|
|
48
|
+
const localPkg = configUtils.packages.getPackageByNpmPkg(pkg.skeletonConfig.rootNpmPkg);
|
|
49
|
+
registerPkg(localPkg);
|
|
50
|
+
}
|
|
56
51
|
|
|
57
52
|
tools.writeJsonFileSync(tsConfigFile, tsConfig);
|
|
58
53
|
})
|