@common-origin/design-system 1.8.5 → 1.9.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/dist/components/molecules/ArtCard/ArtCard.d.ts +1 -0
- package/dist/components/molecules/CardLarge/CardLarge.d.ts +10 -0
- package/dist/components/molecules/CardLarge/index.d.ts +1 -0
- package/dist/components/molecules/CardSmall/CardSmall.d.ts +9 -0
- package/dist/components/molecules/CardSmall/index.d.ts +1 -0
- package/dist/components/molecules/index.d.ts +2 -2
- package/dist/index.esm.js +105 -113
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +106 -114
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-origin/design-system",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Common Origin Design System - Atomic design components with comprehensive WCAG 2.2 AA testing",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -25,17 +25,16 @@
|
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"dev": "next dev",
|
|
28
|
-
"build": "
|
|
28
|
+
"build": "next build",
|
|
29
29
|
"build:package": "rollup -c",
|
|
30
30
|
"build:tokens": "node config/style-dictionary.config.js",
|
|
31
|
-
"build:releases": "node lib/releases/build.cjs",
|
|
32
31
|
"start": "next start",
|
|
33
32
|
"test": "jest",
|
|
34
33
|
"test:watch": "jest --watch",
|
|
35
34
|
"test:coverage": "jest --coverage",
|
|
36
35
|
"typecheck": "tsc --noEmit",
|
|
37
36
|
"docs:generate": "node lib/docgen/generate.js",
|
|
38
|
-
"docs:dev": "npm run build:tokens && npm run
|
|
37
|
+
"docs:dev": "npm run build:tokens && npm run dev",
|
|
39
38
|
"verify:types": "node scripts/verify-types.cjs",
|
|
40
39
|
"prepublishOnly": "npm run build:tokens && npm run build:package && npm run verify:types",
|
|
41
40
|
"release": "npm publish --provenance --access public",
|
|
@@ -74,8 +73,11 @@
|
|
|
74
73
|
"@types/node": "^18.0.3",
|
|
75
74
|
"@types/react": "^19.2.2",
|
|
76
75
|
"@types/react-dom": "^19.2.2",
|
|
76
|
+
"auto-changelog": "^2.5.0",
|
|
77
77
|
"babel-jest": "^30.0.2",
|
|
78
78
|
"babel-plugin-styled-components": "^2.1.4",
|
|
79
|
+
"conventional-changelog-angular": "^8.1.0",
|
|
80
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
79
81
|
"jest": "^30.0.2",
|
|
80
82
|
"jest-axe": "^9.0.0",
|
|
81
83
|
"jest-environment-jsdom": "^30.0.2",
|