@amboss/design-system 3.15.6 → 3.15.8
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/build/cjs/components/Badge/Badge.d.ts +1 -1
- package/build/cjs/components/Badge/Badge.js +1 -1
- package/build/cjs/components/NavBar/NavBar.d.ts +1 -1
- package/build/cjs/components/NavBar/NavBarTabButton.d.ts +2 -1
- package/build/cjs/components/NavBar/NavBarTabButton.js +1 -1
- package/build/cjs/components/PromptInput/PromptInput.js +1 -1
- package/build/cjs/web-tokens/assets/icons.json +1 -0
- package/build/cjs/web-tokens/assets/icons16.json +1 -0
- package/build/esm/components/Badge/Badge.d.ts +1 -1
- package/build/esm/components/Badge/Badge.js +1 -1
- package/build/esm/components/NavBar/NavBar.d.ts +1 -1
- package/build/esm/components/NavBar/NavBarTabButton.d.ts +2 -1
- package/build/esm/components/NavBar/NavBarTabButton.js +1 -1
- package/build/esm/components/PromptInput/PromptInput.js +1 -1
- package/build/esm/web-tokens/assets/icons.json +1 -0
- package/build/esm/web-tokens/assets/icons16.json +1 -0
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amboss/design-system",
|
|
3
|
-
"version": "3.15.
|
|
3
|
+
"version": "3.15.8",
|
|
4
4
|
"description": "the design system for AMBOSS products",
|
|
5
5
|
"author": "AMBOSS",
|
|
6
6
|
"license": "ISC",
|
|
@@ -84,7 +84,9 @@
|
|
|
84
84
|
"start": "npm run tokens:watch & npm run storybook",
|
|
85
85
|
"static": "http-server storybook-static/ -p 6006",
|
|
86
86
|
"storybook": "storybook dev -p 6006",
|
|
87
|
-
"build-storybook": "npm run tokens:web && storybook build --stats-json",
|
|
87
|
+
"build-storybook": "npm run tokens:web && npm run generate-llms-txt && storybook build --stats-json",
|
|
88
|
+
"generate-llms-txt": "[ -d storybook-static ] || storybook build --stats-json && npm run generate-llms-txt:run",
|
|
89
|
+
"generate-llms-txt:run": "node --experimental-strip-types scripts/generate-llms-txt.mts",
|
|
88
90
|
"test": "jest",
|
|
89
91
|
"test:watch": "jest --watch",
|
|
90
92
|
"test:coverage": "TZ=Europe/Berlin jest --coverage",
|
|
@@ -99,12 +101,12 @@
|
|
|
99
101
|
"chromatic:ci": "npx chromatic --project-token ${CHROMATIC_TOKEN} -d 'storybook-static' --zip --skip 'dependabot/**' --exit-zero-on-changes --exit-once-uploaded --only-changed --externals 'tokens/**/*'",
|
|
100
102
|
"chromatic:master": "npx chromatic --project-token ${CHROMATIC_TOKEN} -d 'storybook-static' --zip --auto-accept-changes --only-changed --exit-once-uploaded --externals 'tokens/**/*'",
|
|
101
103
|
"lint": "npm run lint:eslint && npm run lint:prettier",
|
|
102
|
-
"lint:eslint": "eslint -c .eslintrc --fix src .storybook test-utils",
|
|
104
|
+
"lint:eslint": "eslint -c .eslintrc --fix src .storybook test-utils --no-error-on-unmatched-pattern scripts/**/*.{js,ts,mts}",
|
|
103
105
|
"lint:prettier": "prettier --write \"{src,tokens,.storybook,test-utils}/**/*.{js,jsx,ts,tsx,mdx}\"",
|
|
104
106
|
"component": "DS_ROOT=/src/components DS_COMP_FOLDER=/components node scripts/createComponent/createComponent.js",
|
|
105
107
|
"link-ds": "./scripts/link-ds.sh",
|
|
106
|
-
"icons:ios": "node ./scripts/svg-to-pdf.
|
|
107
|
-
"icons:android": "node ./scripts/svg-to-xml.
|
|
108
|
+
"icons:ios": "node --experimental-strip-types ./scripts/svg-to-pdf.mts",
|
|
109
|
+
"icons:android": "node --experimental-strip-types ./scripts/svg-to-xml.mts",
|
|
108
110
|
"icons:optimize": "svgo -rf assets/icons -o assets/icons"
|
|
109
111
|
},
|
|
110
112
|
"repository": {
|