@eui/tools 6.2.8 → 6.2.9
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/init/remotes.js +2 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.2.
|
|
1
|
+
6.2.9
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.2.9 (2022-11-11)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* added default angular.json styles for 15.x remotes - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([6e562d65](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/6e562d65b81e90030b794199d516769dc66ce5ea))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.2.8 (2022-11-11)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -60,6 +60,8 @@ module.exports.generateVirtualRemote = (remoteName, euiVersion) => {
|
|
|
60
60
|
const remotePath = path.join(process.cwd(), 'remotes', remote.fullName);
|
|
61
61
|
const remoteSkeletonPath = path.join(__dirname, 'remotes', euiVersion);
|
|
62
62
|
|
|
63
|
+
tools.logInfo(`Copying angular.json => ${remoteSkeletonPath} ==> ${remotePath}`);
|
|
64
|
+
|
|
63
65
|
tools.copy(remoteSkeletonPath, remotePath);
|
|
64
66
|
|
|
65
67
|
// adding the dependendies files
|