@eui/tools 4.19.10 → 4.19.11
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.19.
|
|
1
|
+
4.19.11
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 4.19.11 (2022-02-21)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* routes replacement wrong injection when ids is used - MWP-7941 [MWP-7941](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-7941) ([1716ddd3](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1716ddd31a49cb5c9158454491b51685e038d070))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 4.19.10 (2022-02-18)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -643,24 +643,24 @@ const translationUtils = require('./scripts/utils/pre-build/translations/transla
|
|
|
643
643
|
|
|
644
644
|
|
|
645
645
|
|
|
646
|
-
|
|
647
|
-
|
|
646
|
+
const prjName = 'my-workplace';
|
|
647
|
+
const prj = configUtils.projects.getCsdrProject(prjName);
|
|
648
648
|
|
|
649
|
-
|
|
650
|
-
//
|
|
651
|
-
//
|
|
652
|
-
//
|
|
653
|
-
|
|
654
|
-
//
|
|
655
|
-
|
|
656
|
-
|
|
649
|
+
return Promise.resolve()
|
|
650
|
+
// .then(() => {
|
|
651
|
+
// return injectionUtils.externals.injectExternalAppSources(prj);
|
|
652
|
+
// })
|
|
653
|
+
.then(() => {
|
|
654
|
+
// return injectionUtils.externals.remapRoutesByEnvConfig(prj, 'DEV', true);
|
|
655
|
+
return injectionUtils.routesReplacement.buildRoutes(prj, 'DEV', true);
|
|
656
|
+
})
|
|
657
657
|
|
|
658
658
|
|
|
659
659
|
|
|
660
660
|
|
|
661
661
|
|
|
662
|
-
return Promise.resolve()
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
662
|
+
// return Promise.resolve()
|
|
663
|
+
// .then(() => {
|
|
664
|
+
// const pkg = configUtils.packages.getPackage('opsys-result-quality-management-eui10-remote-el-ui', true);
|
|
665
|
+
// return translationUtils.elements.generate('eui,opsys', pkg)
|
|
666
|
+
// })
|
|
@@ -218,7 +218,7 @@ const replaceRoutes = (project, envTarget, build, routesFileContent) => {
|
|
|
218
218
|
routeContent += ` id: '${route.data.id}',\n`;
|
|
219
219
|
}
|
|
220
220
|
if (route.data.ids) {
|
|
221
|
-
routeContent += ` ids:
|
|
221
|
+
routeContent += ` ids: ${route.data.ids},\n`;
|
|
222
222
|
}
|
|
223
223
|
if (route.data.featureName) {
|
|
224
224
|
routeContent += ` featureName: '${route.data.featureName}',\n`;
|