@eui/tools 5.3.1 → 5.3.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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/csdr/install/build-app.js +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.3.2 (2022-05-31)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* typo in standalone build part - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([180bce21](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/180bce21a29deb9cae6687aa74e1f821e80e6533))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.3.1 (2022-05-31)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@ module.exports.install = (prj, envTarget, compositeType) => {
|
|
|
11
11
|
return Promise.resolve()
|
|
12
12
|
// checking remotes
|
|
13
13
|
.then(() => {
|
|
14
|
-
if (prj.
|
|
14
|
+
if (prj.standalone) {
|
|
15
15
|
return innerProjects.installDepsStandalone(prj);
|
|
16
16
|
} else {
|
|
17
17
|
return innerProjects.installDeps(prj, envTarget, compositeType);
|