@doctorus/common 0.0.3 → 0.0.4
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/.husky/pre-commit +1 -0
- package/package.json +9 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
npx lint-staged
|
package/package.json
CHANGED
|
@@ -17,8 +17,10 @@
|
|
|
17
17
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
18
18
|
"eslint-plugin-import": "^2.32.0",
|
|
19
19
|
"eslint-plugin-prettier": "^5.5.4",
|
|
20
|
+
"husky": "^9",
|
|
20
21
|
"jest": "^30.2.0",
|
|
21
22
|
"jest-junit": "^16",
|
|
23
|
+
"lint-staged": "^15",
|
|
22
24
|
"prettier": "^3.6.2",
|
|
23
25
|
"projen": "^0.98.6",
|
|
24
26
|
"ts-jest": "^29.4.5",
|
|
@@ -30,7 +32,7 @@
|
|
|
30
32
|
"publishConfig": {
|
|
31
33
|
"access": "public"
|
|
32
34
|
},
|
|
33
|
-
"version": "0.0.
|
|
35
|
+
"version": "0.0.4",
|
|
34
36
|
"jest": {
|
|
35
37
|
"coverageProvider": "v8",
|
|
36
38
|
"testMatch": [
|
|
@@ -83,6 +85,11 @@
|
|
|
83
85
|
"require": "./lib/index.js"
|
|
84
86
|
}
|
|
85
87
|
},
|
|
88
|
+
"lint-staged": {
|
|
89
|
+
"*.ts": [
|
|
90
|
+
"prettier --write"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
86
93
|
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\".",
|
|
87
94
|
"scripts": {
|
|
88
95
|
"build": "npx projen build",
|
|
@@ -92,6 +99,7 @@
|
|
|
92
99
|
"default": "npx projen default",
|
|
93
100
|
"eject": "npx projen eject",
|
|
94
101
|
"eslint": "npx projen eslint",
|
|
102
|
+
"format": "npx projen format",
|
|
95
103
|
"package": "npx projen package",
|
|
96
104
|
"post-compile": "npx projen post-compile",
|
|
97
105
|
"post-upgrade": "npx projen post-upgrade",
|