mainstack-design-system 0.0.0 → 0.0.2
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 +4 -4
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<!-- @format -->
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# Mainstack Design System
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This is a component library for the Mainstack Design System. It is built with React, Typescript and Chakra UI
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Storybook Documentation
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
To view the design system documentation, visit this [link](https://mainstack-design-system.vercel.app/).
|
|
10
10
|
|
|
11
11
|
## Husky
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mainstack-design-system",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
"format": "prettier src -c --write && pretty-quick --staged",
|
|
10
10
|
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --quiet --fix",
|
|
11
11
|
"ts-error": "tsc",
|
|
12
|
-
|
|
13
|
-
"
|
|
12
|
+
"install:husky": "[ ! -d \"/node_modules/husky/\" ] || husky install",
|
|
13
|
+
"postinstall": "yarn install:husky",
|
|
14
|
+
"prepare": "yarn install:husky",
|
|
14
15
|
"scriptname": "cmd",
|
|
15
16
|
"storybook": "storybook dev -p 6006",
|
|
16
17
|
"build-storybook": "storybook build"
|