@eintrek/erp-theme 1.4.6 → 1.4.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/dist/components/ui/avatar.d.ts +1 -1
- package/dist/components/ui/select.d.ts +1 -1
- package/dist/index.esm.js +36 -24
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +36 -24
- package/dist/index.js.map +1 -1
- package/package.json +11 -13
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eintrek/erp-theme",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
4
4
|
"private": false,
|
|
5
|
-
"packageManager": "pnpm@10.17.1",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"description": "A shadcn/ui component library with Storybook",
|
|
8
7
|
"main": "dist/index.js",
|
|
@@ -13,16 +12,6 @@
|
|
|
13
12
|
"dist",
|
|
14
13
|
"scripts/enforce-pnpm.js"
|
|
15
14
|
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"preinstall": "node scripts/enforce-pnpm.js",
|
|
18
|
-
"build": "cross-env NODE_ENV=production rollup -c --silent",
|
|
19
|
-
"dev": "cross-env NODE_ENV=production rollup -c -w",
|
|
20
|
-
"storybook": "storybook dev -p 6006",
|
|
21
|
-
"build-storybook": "storybook build",
|
|
22
|
-
"clean": "rimraf dist",
|
|
23
|
-
"prepare": "rimraf dist && cross-env NODE_ENV=production rollup -c --silent",
|
|
24
|
-
"pack": "cross-env NODE_ENV=production pnpm build && pnpm pack"
|
|
25
|
-
},
|
|
26
15
|
"keywords": [
|
|
27
16
|
"react",
|
|
28
17
|
"components",
|
|
@@ -132,5 +121,14 @@
|
|
|
132
121
|
"extends": [
|
|
133
122
|
"plugin:storybook/recommended"
|
|
134
123
|
]
|
|
124
|
+
},
|
|
125
|
+
"scripts": {
|
|
126
|
+
"preinstall": "node scripts/enforce-pnpm.js",
|
|
127
|
+
"build": "cross-env NODE_ENV=production rollup -c --silent",
|
|
128
|
+
"dev": "cross-env NODE_ENV=production rollup -c -w",
|
|
129
|
+
"storybook": "storybook dev -p 6006",
|
|
130
|
+
"build-storybook": "storybook build",
|
|
131
|
+
"clean": "rimraf dist",
|
|
132
|
+
"pack": "cross-env NODE_ENV=production pnpm build && pnpm pack"
|
|
135
133
|
}
|
|
136
|
-
}
|
|
134
|
+
}
|