@eui/tools 5.3.62 → 5.3.64

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/.eslintrc.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "ignorePatterns": [
3
+ "projects/**/*"
4
+ ],
5
+ "overrides": [
6
+ {
7
+ "files": [
8
+ "*.js"
9
+ ],
10
+ "extends": "airbnb-base",
11
+ "overrides": [
12
+ ],
13
+ "parserOptions": {
14
+ "ecmaVersion": "latest",
15
+ "sourceType": "module"
16
+ },
17
+ "rules": {
18
+ "@typescript-eslint/ban-ts-comment": "off",
19
+ "@typescript-eslint/ban-types": "error",
20
+ "@typescript-eslint/consistent-type-definitions": "off",
21
+ "@typescript-eslint/dot-notation": "off",
22
+ "@typescript-eslint/explicit-member-accessibility": [
23
+ "off",
24
+ {
25
+ "accessibility": "explicit"
26
+ }
27
+ ],
28
+ "@typescript-eslint/no-require-imports": "error",
29
+ "@typescript-eslint/no-unused-vars": "off",
30
+ "@typescript-eslint/no-var-requires": "error",
31
+ "@typescript-eslint/require-await": "error",
32
+ "brace-style": [
33
+ "error",
34
+ "1tbs"
35
+ ],
36
+ "comma-dangle": [
37
+ "error",
38
+ "always-multiline"
39
+ ],
40
+ "id-blacklist": "off",
41
+ "id-match": "off",
42
+ "no-duplicate-case": "error",
43
+ "no-duplicate-imports": "off",
44
+ "no-invalid-this": "error",
45
+ "no-multiple-empty-lines": [
46
+ "error",
47
+ {
48
+ "max": 1
49
+ }
50
+ ],
51
+ "no-new-func": "error",
52
+ "no-redeclare": "off",
53
+ "@typescript-eslint/no-redeclare": [
54
+ "error"
55
+ ],
56
+ "no-template-curly-in-string": "error",
57
+ "no-underscore-dangle": "off",
58
+ "@typescript-eslint/naming-convention": [
59
+ "error",
60
+ {
61
+ "selector": "enum",
62
+ "format": [
63
+ "PascalCase",
64
+ "UPPER_CASE"
65
+ ]
66
+ }
67
+ ],
68
+ "@typescript-eslint/member-ordering": [
69
+ "error",
70
+ {
71
+ "default": [
72
+ "public-static-field",
73
+ "public-instance-field",
74
+ "private-static-field",
75
+ "private-instance-field",
76
+ "public-constructor",
77
+ "private-constructor",
78
+ "public-instance-method",
79
+ "protected-instance-method",
80
+ "private-instance-method"
81
+ ]
82
+ }
83
+ ]
84
+ }
85
+ },
86
+ {
87
+ "files": [
88
+ "*.html"
89
+ ],
90
+ "extends": [
91
+ "plugin:@angular-eslint/template/recommended"
92
+ ],
93
+ "rules": {}
94
+ }
95
+ ]
96
+ }
@@ -1 +1 @@
1
- 5.3.62
1
+ 5.3.64
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 5.3.64 (2022-09-28)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * eui15 added specific resolutions and yarn.lock for csdr install - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([6d3a41f1](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/6d3a41f1d3e23deda820692bd9d4b41aa7fb3d8f))
7
+
8
+ * * *
9
+ * * *
10
+ ## 5.3.63 (2022-09-27)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * added build script for pr scanning of ui - extract release backend (wip) - EUI-6540 EUI-4107 [EUI-6540](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6540) ([5c838419](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5c8384190339318aaa2532f347c00506f6b68606))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 5.3.62 (2022-09-26)
2
20
 
3
21
  ##### Chores
@@ -9,6 +9,7 @@ const scriptIndex = args.findIndex(
9
9
  x => x === 'clean-package' ||
10
10
  x === 'clean-all' ||
11
11
  x === 'build-package' ||
12
+ x === 'build-package-pr-scan' ||
12
13
  x === 'build-package-sub' ||
13
14
  x === 'build-element' ||
14
15
  x === 'build-deps' ||
@@ -28,6 +29,7 @@ const scriptIndex = args.findIndex(
28
29
  x === 'csdr-upgrade-deps' ||
29
30
  x === 'csdr-serve-app' ||
30
31
  x === 'release-package' ||
32
+ x === 'release-backend' ||
31
33
  x === 'release-app' ||
32
34
  x === 'generate-translations' ||
33
35
  x === 'csdr-sync' ||
@@ -46,6 +48,7 @@ switch (script) {
46
48
  case 'clean-package':
47
49
  case 'clean-all':
48
50
  case 'build-package':
51
+ case 'build-package-pr-scan':
49
52
  case 'build-package-sub':
50
53
  case 'build-element':
51
54
  case 'build-deps':
@@ -65,6 +68,7 @@ switch (script) {
65
68
  case 'csdr-upgrade-deps':
66
69
  case 'csdr-serve-app':
67
70
  case 'release-package':
71
+ case 'release-backend':
68
72
  case 'release-app':
69
73
  case 'csdr-sync':
70
74
  case 'csdr-cli':
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ const buildPackagePrScan = require('../../scripts/csdr/release/package/build-pr-scan');
4
+
5
+ buildPackagePrScan.run();
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ const releaseBackend = require('../../scripts/csdr/release/package/release-backend');
4
+
5
+ releaseBackend.run();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.62",
3
+ "version": "5.3.64",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -2,5 +2,6 @@
2
2
  "@types/node": ">=14.14.10",
3
3
  "https-proxy-agent": ">=2.2.3",
4
4
  "mem": ">=4.3.0 <=8.1.1",
5
- "zone.js": ">=0.11.5"
5
+ "zone.js": ">=0.11.5",
6
+ "@babel/types": "7.19.0"
6
7
  }