@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.
@@ -1 +1 @@
1
- 5.3.13
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,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.13",
3
+ "version": "5.3.14",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -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({
@@ -7,6 +7,11 @@
7
7
  "target": "ES2016",
8
8
  "lib": ["es2020", "dom"]
9
9
  },
10
+ "angularCompilerOptions": {
11
+ "annotateForClosureCompiler": true,
12
+ "strictTemplates": true,
13
+ "strictInjectionParameters": true,
14
+ },
10
15
  "exclude": [
11
16
  "test.ts",
12
17
  "**/*.spec.ts",
@@ -7,6 +7,11 @@
7
7
  "target": "ES2016",
8
8
  "lib": ["es2020", "dom"]
9
9
  },
10
+ "angularCompilerOptions": {
11
+ "annotateForClosureCompiler": true,
12
+ "strictTemplates": true,
13
+ "strictInjectionParameters": true,
14
+ },
10
15
  "exclude": [
11
16
  "test.ts",
12
17
  "**/*.spec.ts",