@asdp/ferryui 0.1.22-dev.8575 → 0.1.22-dev.8576

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -36,6 +36,12 @@ npm run build
36
36
  # Run Storybook
37
37
  npm run storybook
38
38
 
39
+ # Build Storybook (Production)
40
+ npm run build-storybook
41
+
42
+ # Serve Production Build
43
+ npm run serve-storybook
44
+
39
45
  # Type Checking
40
46
  npm run typecheck
41
47
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asdp/ferryui",
3
- "version": "0.1.22-dev.8575",
3
+ "version": "0.1.22-dev.8576",
4
4
  "description": "ASDP Ferry UI Component Library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -16,7 +16,8 @@
16
16
  "typecheck": "tsc --noEmit",
17
17
  "prepublishOnly": "npm run build",
18
18
  "storybook": "storybook dev -p 6006",
19
- "build-storybook": "storybook build"
19
+ "build-storybook": "storybook build",
20
+ "serve-storybook": "npx serve storybook-static -p 6006"
20
21
  },
21
22
  "publishConfig": {
22
23
  "access": "public"
@@ -61,8 +62,8 @@
61
62
  "react-grid-system": "^8.2.1",
62
63
  "react-hook-form": "^7.71.1",
63
64
  "react-phone-input-2": "^2.15.1",
64
- "react-select": "^5.0.0",
65
65
  "react-range": "^1.10.0",
66
+ "react-select": "^5.0.0",
66
67
  "storybook": "^10.1.11",
67
68
  "tsup": "^8.0.0",
68
69
  "typescript": "^5.3.0",
@@ -77,7 +78,7 @@
77
78
  "react-grid-system": "^8.2.1",
78
79
  "react-hook-form": "^7.0.0",
79
80
  "react-phone-input-2": "^2.15.1",
80
- "react-select": "^5.0.0",
81
- "react-range": "^1.10.0"
81
+ "react-range": "^1.10.0",
82
+ "react-select": "^5.0.0"
82
83
  }
83
84
  }