@genesislcap/foundation-utils 14.15.1 → 14.16.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.
- package/custom-elements-manifest.config.js +14 -0
- package/dist/custom-elements.json +1937 -0
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-utils",
|
|
3
3
|
"description": "Genesis Foundation Utils",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.16.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -10,12 +10,14 @@
|
|
|
10
10
|
"PORT": 3040
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
|
-
"
|
|
13
|
+
"api": "npm run cem:analyze",
|
|
14
|
+
"build": "npm run clean && npm run build:tsc && npm run api",
|
|
14
15
|
"build:rollup": "rollup -c",
|
|
15
16
|
"build:rollup:stats": "cross-env ANALYZE=1 npm run build:rollup",
|
|
16
17
|
"build:tsc": "tsc -b ./tsconfig.json",
|
|
17
18
|
"build:webpack": "cross-env NODE_ENV=production webpack",
|
|
18
19
|
"build:webpack:stats": "cross-env ANALYZE=1 npm run build:webpack",
|
|
20
|
+
"cem:analyze": "cem analyze --config custom-elements-manifest.config.js",
|
|
19
21
|
"clean": "genx clean dist tsconfig.tsbuildinfo .rollup.cache",
|
|
20
22
|
"dev": "npm run dev:tsc",
|
|
21
23
|
"dev:rollup": "rollup -c -w --configDev",
|
|
@@ -25,7 +27,8 @@
|
|
|
25
27
|
"test": "echo \"Error: no test specified\""
|
|
26
28
|
},
|
|
27
29
|
"devDependencies": {
|
|
28
|
-
"@
|
|
30
|
+
"@custom-elements-manifest/analyzer": "^0.8.2",
|
|
31
|
+
"@genesislcap/genx": "^14.16.0",
|
|
29
32
|
"@module-federation/dashboard-plugin": "2.3.0",
|
|
30
33
|
"@playwright/test": "^1.18.1",
|
|
31
34
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
@@ -87,5 +90,6 @@
|
|
|
87
90
|
"publishConfig": {
|
|
88
91
|
"access": "public"
|
|
89
92
|
},
|
|
90
|
-
"
|
|
93
|
+
"customElements": "dist/custom-elements.json",
|
|
94
|
+
"gitHead": "9c10e949c79b418e33593b5ba8048124f4fc699f"
|
|
91
95
|
}
|