@vadimcomanescu/nadicode-design-system 2.0.0 → 2.0.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vadimcomanescu/nadicode-design-system",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"build": "next build",
|
|
28
28
|
"start": "next start",
|
|
29
29
|
"build:types": "tsc -p tsconfig.types.json && node scripts/rewrite-dist-types.mjs",
|
|
30
|
-
"build:lib": "node scripts/build-tokens-css.mjs && tsup && npm run build:types && node scripts/check-export-targets.mjs",
|
|
30
|
+
"build:lib": "node scripts/build-tokens-css.mjs && tsup && npm run build:types && node scripts/generate-catalog.mjs && node scripts/check-export-targets.mjs",
|
|
31
31
|
"pack:artifact": "node scripts/pack-package-artifact.mjs",
|
|
32
32
|
"exports:generate": "node scripts/generate-exports.mjs",
|
|
33
33
|
"test:distribution": "node scripts/package-smoke-test.mjs",
|
|
@@ -41,8 +41,10 @@
|
|
|
41
41
|
"ds:validate": "npm run ds:check && npm run lint && tsc --noEmit && node scripts/check-tokens-freshness.mjs && npm run build:lib && npm run test:distribution && npm run build",
|
|
42
42
|
"ds:check": "node scripts/ds-check.mjs",
|
|
43
43
|
"ds:task-pack": "node scripts/ds-generate-task-pack.mjs",
|
|
44
|
+
"catalog:generate": "node scripts/generate-catalog.mjs",
|
|
45
|
+
"catalog:check": "node scripts/generate-catalog.mjs --check",
|
|
44
46
|
"docs:api": "node scripts/docs-generate-api.mjs",
|
|
45
|
-
"docs:check": "node scripts/docs-check.mjs",
|
|
47
|
+
"docs:check": "node scripts/docs-check.mjs && node scripts/generate-catalog.mjs --check",
|
|
46
48
|
"docs:inventory": "node scripts/docs-inventory.mjs",
|
|
47
49
|
"release:check": "npm run docs:check && npm run test:all",
|
|
48
50
|
"release:verify": "node scripts/verify-package-release.mjs",
|
|
@@ -175,6 +177,7 @@
|
|
|
175
177
|
"import": "./dist/index.js",
|
|
176
178
|
"types": "./dist/lib-index.d.ts"
|
|
177
179
|
},
|
|
180
|
+
"./catalog": "./dist/catalog.json",
|
|
178
181
|
"./accordion": {
|
|
179
182
|
"import": "./dist/components/ui/Accordion.js",
|
|
180
183
|
"types": "./dist/components/ui/Accordion.d.ts"
|