@eui/tools 6.16.35 → 6.17.0

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
- 6.16.35
1
+ 6.17.0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.17.0 (2024-07-18)
2
+
3
+ ##### New Features
4
+
5
+ * **remotes:**
6
+ * 2 points: - make the concatenation of remote files completely "files existance" driven (this way it better support esbuild output); - as a secondary improvement, the webcomponent shim is removed (all major browsers support webcomponents). [MWP-11061](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11061) ([fa6424ca](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/fa6424cabe67caa1426afff18dec94d9e6b8dc3a))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.16.36 (2024-07-18)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * enable esbuild on v18 remote through optional config - EUI-9014 [EUI-9014](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9014) ([324e2a9b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/324e2a9bf201a46b7f5d5e0cbc43cac96648fc8f))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.16.35 (2024-07-17)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.16.35",
3
+ "version": "6.17.0",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -0,0 +1,82 @@
1
+ {
2
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
+ "version": 1,
4
+ "newProjectRoot": "apps",
5
+ "projects": {
6
+ "@remote.name@": {
7
+ "root": ".",
8
+ "sourceRoot": "src",
9
+ "projectType": "application",
10
+ "prefix": "app",
11
+ "schematics": {},
12
+ "architect": {
13
+ "build": {
14
+ "builder": "@angular-devkit/build-angular:application",
15
+ "options": {
16
+ "outputPath": "dist",
17
+ "index": "src/index.html",
18
+ "browser": "src/main.ts",
19
+ "polyfills": ["zone.js"],
20
+ "tsConfig": "tsconfig.app.json",
21
+ "sourceMap": {
22
+ "scripts": true,
23
+ "styles": false,
24
+ "hidden": true,
25
+ "vendor": true
26
+ },
27
+ "scripts": [
28
+ ],
29
+ "assets": [
30
+ "src/assets",
31
+ {
32
+ "glob": "**/*",
33
+ "input": "node_modules/@eui/core/assets/",
34
+ "output": "./assets"
35
+ },
36
+ {
37
+ "glob": "**/*",
38
+ "input": "node_modules/@eui/styles/dist/assets/",
39
+ "output": "./assets"
40
+ }
41
+ ],
42
+ "styles": [
43
+ "node_modules/@eui/styles/dist/styles/eui.css",
44
+ "node_modules/@eui/styles/dist/styles/eui-extra-utilities.css",
45
+ "node_modules/@eui/styles/dist/styles/eui-legacy-bootstrap.css",
46
+ "node_modules/@eui/styles/dist/styles/eui-legacy-icons-font.css",
47
+ "node_modules/@eui/styles/dist/styles/eui-legacy-utilities.css"
48
+ ]
49
+ },
50
+ "configurations": {
51
+ "development": {
52
+ "optimization": false,
53
+ "extractLicenses": false,
54
+ "sourceMap": false,
55
+ "namedChunks": true
56
+ },
57
+ "production": {
58
+ "fileReplacements": [
59
+ {
60
+ "replace": "src/environments/environment.ts",
61
+ "with": "src/environments/environment.prod.ts"
62
+ }
63
+ ],
64
+ "optimization": true,
65
+ "outputHashing": "all",
66
+ "sourceMap": false,
67
+ "namedChunks": false,
68
+ "aot": true,
69
+ "extractLicenses": true
70
+ },
71
+ "serve-dist": {
72
+ "outputPath": "serve-dist"
73
+ }
74
+ }
75
+ }
76
+ }
77
+ }
78
+ },
79
+ "cli": {
80
+ "analytics": false
81
+ }
82
+ }
@@ -25,7 +25,6 @@
25
25
  "vendor": true
26
26
  },
27
27
  "scripts": [
28
- "./node_modules/@webcomponents/custom-elements/src/native-shim.js"
29
28
  ],
30
29
  "assets": [
31
30
  "src/assets",