@kbss-cvut/s-forms 0.4.2-beta-ca034ec.0 → 0.4.2-beta-1371322.0
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.
|
@@ -6,3 +6,4 @@ export declare const Form1: ComponentStory<React.ForwardRefExoticComponent<React
|
|
|
6
6
|
export declare const Form2: ComponentStory<React.ForwardRefExoticComponent<React.RefAttributes<any>>>;
|
|
7
7
|
export declare const TouristDestinationForm1: ComponentStory<React.ForwardRefExoticComponent<React.RefAttributes<any>>>;
|
|
8
8
|
export declare const TouristDestinationForm2: ComponentStory<React.ForwardRefExoticComponent<React.RefAttributes<any>>>;
|
|
9
|
+
export declare const OccurenceReportingForm: ComponentStory<React.ForwardRefExoticComponent<React.RefAttributes<any>>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kbss-cvut/s-forms",
|
|
3
|
-
"version": "0.4.2-beta-
|
|
3
|
+
"version": "0.4.2-beta-1371322.0",
|
|
4
4
|
"description": "Semantic forms generator and processor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -89,7 +89,9 @@
|
|
|
89
89
|
"chromatic": "^6.5.3",
|
|
90
90
|
"css-loader": "^3.5.3",
|
|
91
91
|
"enzyme": "^3.11.0",
|
|
92
|
+
"husky": "^7.0.0",
|
|
92
93
|
"jest": "^26.0.1",
|
|
94
|
+
"lint-staged": "^13.0.3",
|
|
93
95
|
"prettier": "^2.5.1",
|
|
94
96
|
"query-string": "^6.13.5",
|
|
95
97
|
"react": "~17.0.2",
|
|
@@ -97,8 +99,7 @@
|
|
|
97
99
|
"standard-version": "^9.3.2",
|
|
98
100
|
"style-loader": "^1.2.1",
|
|
99
101
|
"typescript": "^4.5.5",
|
|
100
|
-
"watchify": "^3.11.1"
|
|
101
|
-
"husky": "^7.0.0"
|
|
102
|
+
"watchify": "^3.11.1"
|
|
102
103
|
},
|
|
103
104
|
"scripts": {
|
|
104
105
|
"test": "jest",
|
|
@@ -111,11 +112,15 @@
|
|
|
111
112
|
"release:minor": "npm test && standard-version --release-as minor && npm publish",
|
|
112
113
|
"prettier:check": "npx prettier --check .",
|
|
113
114
|
"prettier:format": "npx prettier --write .",
|
|
115
|
+
"precommit": "lint-staged",
|
|
114
116
|
"prepare": "husky install"
|
|
115
117
|
},
|
|
116
118
|
"standard-version": {
|
|
117
119
|
"releaseCommitMessageFormat": "[{{currentTag}}] Bump version"
|
|
118
120
|
},
|
|
121
|
+
"lint-staged": {
|
|
122
|
+
"*": "prettier --check"
|
|
123
|
+
},
|
|
119
124
|
"files": [
|
|
120
125
|
"dist/*.*",
|
|
121
126
|
"dist/**/*"
|