@eui/tools 4.21.1 → 4.21.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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.21.
|
|
1
|
+
4.21.2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 4.21.2 (2022-03-17)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* re-enable remove of yarn.lock for package - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([c4c34ad7](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c4c34ad71332f58b4b3a70e91cd0b514d797636d))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 4.21.1 (2022-03-17)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -88,10 +88,10 @@ module.exports.init = (pkg) => {
|
|
|
88
88
|
})
|
|
89
89
|
|
|
90
90
|
// REMOVE YARN.LOCK
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
91
|
+
.then(() => {
|
|
92
|
+
utils.tools.logInfo('Removing yarn.lock');
|
|
93
|
+
return utils.tools.remove(path.join(process.cwd(), 'yarn.lock'));
|
|
94
|
+
})
|
|
95
95
|
|
|
96
96
|
.catch((e) => {
|
|
97
97
|
throw e;
|