@ni/fast-foundation 10.1.5 → 10.2.1
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/dist/custom-elements.json +19637 -0
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ni/fast-foundation",
|
|
3
3
|
"description": "A library of Web Component building blocks",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "10.1
|
|
5
|
+
"version": "10.2.1",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "National Instruments"
|
|
8
8
|
},
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"types": "dist/fast-foundation.d.ts",
|
|
22
22
|
"unpkg": "dist/fast-foundation.min.js",
|
|
23
23
|
"scripts": {
|
|
24
|
-
"build": "npm run clean:dist && npm run build:tsc && npm run build:rollup && npm run doc",
|
|
24
|
+
"build": "npm run clean:dist && npm run build:tsc && npm run build:rollup && npm run doc && npm run build:cem",
|
|
25
25
|
"pack": "npm pack",
|
|
26
26
|
"lint": "npm run eslint",
|
|
27
27
|
"format": "npm run eslint:fix",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"doc": "api-extractor run --local",
|
|
31
31
|
"build:rollup": "rollup --bundleConfigAsCjs -c",
|
|
32
32
|
"build:tsc": "tsc -p ./tsconfig.json",
|
|
33
|
+
"build:cem": "cem analyze --config ./custom-elements-manifest.config.mjs",
|
|
33
34
|
"dev": "tsc -p ./tsconfig.json -w",
|
|
34
35
|
"tdd": "npm run dev & npm run test-chrome:watch",
|
|
35
36
|
"tdd:firefox": "npm run dev & npm run test-firefox:watch",
|
|
@@ -50,7 +51,12 @@
|
|
|
50
51
|
"test-firefox:watch": "karma start karma.conf.cjs --browsers=FirefoxHeadless --watch-extensions js"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
54
|
+
"@custom-elements-manifest/analyzer": "^0.11.0",
|
|
53
55
|
"@microsoft/api-extractor": "7.49.1",
|
|
56
|
+
"@rollup/plugin-commonjs": "^28.0.0",
|
|
57
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
58
|
+
"@rollup/plugin-terser": "^0.4.0",
|
|
59
|
+
"@rollup/plugin-typescript": "^11",
|
|
54
60
|
"@types/chai": "^4",
|
|
55
61
|
"@types/chai-spies": "^1.0.3",
|
|
56
62
|
"@types/karma": "^6.3.9",
|
|
@@ -75,11 +81,7 @@
|
|
|
75
81
|
"prettier": "3.4.2",
|
|
76
82
|
"rimraf": "^6.0.1",
|
|
77
83
|
"rollup": "^4.30.1",
|
|
78
|
-
"@rollup/plugin-commonjs": "^28.0.0",
|
|
79
84
|
"rollup-plugin-filesize": "^10.0.0",
|
|
80
|
-
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
81
|
-
"@rollup/plugin-terser": "^0.4.0",
|
|
82
|
-
"@rollup/plugin-typescript": "^11",
|
|
83
85
|
"source-map": "^0.7.3",
|
|
84
86
|
"source-map-loader": "^5.0.0",
|
|
85
87
|
"ts-loader": "^9.5.2",
|