@appcorp/shadcn 1.1.33 → 1.1.34
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 +3 -3
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appcorp/shadcn",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.34",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build:next": "next build",
|
|
6
|
-
"build:storybook": "storybook build -c .storybook -o .out",
|
|
6
|
+
"build:storybook": "mv ../.pnp.cjs ../.pnp.cjs.bak 2>/dev/null || true && storybook build -c .storybook -o .out && mv ../.pnp.cjs.bak ../.pnp.cjs 2>/dev/null || true",
|
|
7
7
|
"build:ts": "tsc --project tsconfig.build.json",
|
|
8
8
|
"build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib && cp yarn.lock lib",
|
|
9
9
|
"clean": "yarn rimraf ./lib",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"prepare": "husky",
|
|
23
23
|
"publish:npm": "yarn build && cd lib/ && npm publish --access public && cd ..",
|
|
24
24
|
"start": "next start",
|
|
25
|
-
"storybook": "storybook dev -p 6006",
|
|
25
|
+
"storybook": "mv ../.pnp.cjs ../.pnp.cjs.bak 2>/dev/null || true && storybook dev -p 6006",
|
|
26
26
|
"test:watch": "jest --watch",
|
|
27
27
|
"test": "jest",
|
|
28
28
|
"upgrade": "ncu -u"
|