myshell-react-lib 0.2.34 → 0.2.35

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myshell-react-lib",
3
- "version": "0.2.34",
3
+ "version": "0.2.35",
4
4
  "type": "module",
5
5
  "description": "React component library with Tailwind CSS integration",
6
6
  "main": "./dist/index.cjs",
@@ -16,7 +16,11 @@
16
16
  "test": "jest",
17
17
  "lint": "eslint src --ext .ts,.tsx",
18
18
  "storybook": "storybook dev -p 6006",
19
- "build-storybook": "storybook build"
19
+ "build-storybook": "storybook build",
20
+ "prepublishOnly": "npm run build",
21
+ "publish:patch": "npm version patch && npm publish",
22
+ "publish:minor": "npm version minor && npm publish",
23
+ "publish:major": "npm version major && npm publish"
20
24
  },
21
25
  "keywords": [
22
26
  "react",
@@ -135,4 +139,4 @@
135
139
  "require": "./dist/index.cjs"
136
140
  }
137
141
  }
138
- }
142
+ }