@eui/tools 5.3.13 → 5.3.14
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 +13 -0
- package/package.json +1 -1
- package/scripts/utils/build/package/nodeJs.js +13 -0
- package/scripts/utils/pre-build/injection/app-sources-full-skeleton-eui13/tsconfig.app.json +5 -0
- package/scripts/utils/pre-build/injection/app-sources-full-skeleton-eui14/tsconfig.app.json +5 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.14
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 5.3.14 (2022-06-17)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* enabling strictTemplate for showcases - EUI-6148 [EUI-6148](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6148) ([a9305f6a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a9305f6aabe1ae54b822f3ab2be5c5d129193e82))
|
|
7
|
+
##### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **other:**
|
|
10
|
+
* nodejs build package type - MWP-7700 [MWP-7700](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-7700) ([9aab9401](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9aab940169cff0b2be07073bc3838b18a282ca69))
|
|
11
|
+
|
|
12
|
+
* * *
|
|
13
|
+
* * *
|
|
1
14
|
## 5.3.13 (2022-06-16)
|
|
2
15
|
|
|
3
16
|
##### Chores
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
// GLOBAL
|
|
4
|
+
const path = require('path');
|
|
4
5
|
|
|
5
6
|
// LOCAL
|
|
6
7
|
const tools = require('../../tools');
|
|
@@ -27,6 +28,18 @@ module.exports.build = (pkg, isMaster) => {
|
|
|
27
28
|
return testUtils.runMocha(pkg);
|
|
28
29
|
}
|
|
29
30
|
})
|
|
31
|
+
.then(() => {
|
|
32
|
+
return tools.copydir(
|
|
33
|
+
path.join(pkg.paths.pkgRootDirectory, 'assets'),
|
|
34
|
+
path.join(pkg.paths.pkgBuild, 'assets')
|
|
35
|
+
);
|
|
36
|
+
})
|
|
37
|
+
.then(() => {
|
|
38
|
+
console.log('assets copy succeeded');
|
|
39
|
+
tools.copy(path.join(pkg.paths.pkgRootDirectory, 'package.json'), path.join(pkg.paths.pkgBuild, 'package.json'));
|
|
40
|
+
tools.copy(path.join(pkg.paths.pkgRootDirectory, 'README.md'), path.join(pkg.paths.pkgBuild, 'README.md'));
|
|
41
|
+
tools.copy(path.join(pkg.paths.pkgRootDirectory, 'LICENSE'), path.join(pkg.paths.pkgBuild, 'LICENSE'));
|
|
42
|
+
})
|
|
30
43
|
|
|
31
44
|
.then(() => {
|
|
32
45
|
return notificationUtils.package.sendPackageMessage({
|