enjanga-components-library 1.0.21 → 1.0.23
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/README.md +20 -3
- package/dist/index.js +4113 -5663
- package/dist/index.mjs +3456 -5053
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "enjanga-components-library",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"description": "Reusable component library for Next.js 13+ projects with Carbon design system.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -38,7 +38,9 @@
|
|
|
38
38
|
"watch:css": "sass -I node_modules --no-source-map --watch src/styles/index.scss dist/styles.css",
|
|
39
39
|
"storybook": "storybook dev -p 6006",
|
|
40
40
|
"build-storybook": "storybook build",
|
|
41
|
-
"release": "yarn build && npm version patch && npm publish",
|
|
41
|
+
"release": "yarn clean:hard && yarn build && npm version patch && npm publish",
|
|
42
|
+
"clean": "rm -rf node_modules dist && yarn cache clean && yarn install",
|
|
43
|
+
"clean:hard": "rm -rf node_modules dist yarn.lock && yarn cache clean && yarn install",
|
|
42
44
|
"prepublishOnly": "yarn build"
|
|
43
45
|
},
|
|
44
46
|
"peerDependencies": {
|
|
@@ -70,7 +72,7 @@
|
|
|
70
72
|
"clsx": "^2.1.1",
|
|
71
73
|
"concurrently": "^9.1.2",
|
|
72
74
|
"css-loader": "^7.1.2",
|
|
73
|
-
"enjanga-core-setup": "^1.0.
|
|
75
|
+
"enjanga-core-setup": "^1.0.20",
|
|
74
76
|
"react": "^19.0.0",
|
|
75
77
|
"react-docgen-typescript": "^2.4.0",
|
|
76
78
|
"react-dom": "^19.0.0",
|