@yomologic/react-ui 0.5.5 → 0.5.7
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/index.js +16 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -7
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +29 -14
- package/dist/styles.css.map +1 -1
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yomologic/react-ui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
4
4
|
"description": "A modern, lightweight React UI component library built with TypeScript",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,7 +33,10 @@
|
|
|
33
33
|
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
|
|
34
34
|
"type-check": "tsc --noEmit",
|
|
35
35
|
"prepublishOnly": "yarn build",
|
|
36
|
-
"prepare": "husky"
|
|
36
|
+
"prepare": "husky",
|
|
37
|
+
"release:patch": "npm version patch && git push origin master --tags",
|
|
38
|
+
"release:minor": "npm version minor && git push origin master --tags",
|
|
39
|
+
"release:major": "npm version major && git push origin master --tags"
|
|
37
40
|
},
|
|
38
41
|
"lint-staged": {
|
|
39
42
|
"*.{ts,tsx,json,md}": [
|