File tree 3 files changed +229
-8
lines changed
3 files changed +229
-8
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+ . " $( dirname -- " $0 " ) /_/husky.sh"
3
+
4
+ yarn lint-staged
Original file line number Diff line number Diff line change 10
10
"compile" : " yarn workspace mikro-orm-find-dataloader run build" ,
11
11
"test" : " yarn workspace mikro-orm-find-dataloader run test" ,
12
12
"version" : " yarn changeset version && yarn install --immutable" ,
13
- "release" : " yarn run compile && yarn changeset publish"
13
+ "release" : " yarn run compile && yarn changeset publish" ,
14
+ "postinstall" : " husky install"
14
15
},
15
16
"version" : " 1.0.0" ,
16
17
"description" : " Additional dataloaders for MikroORM" ,
35
36
"eslint-plugin-n" : " ^16.3.1" ,
36
37
"eslint-plugin-prettier" : " ^5.0.1" ,
37
38
"eslint-plugin-promise" : " ^6.1.1" ,
39
+ "husky" : " ^8.0.3" ,
38
40
"jest" : " ^29.7.0" ,
41
+ "lint-staged" : " ^15.1.0" ,
39
42
"nodemon" : " ^3.0.1" ,
40
43
"prettier" : " ^3.1.0" ,
41
44
"rimraf" : " ^5.0.5" ,
42
45
"ts-jest" : " ^29.1.1" ,
43
46
"ts-node" : " ^10.9.1" ,
44
47
"typescript" : " ^5.2.2"
48
+ },
49
+ "lint-staged" : {
50
+ "*.ts" : [
51
+ " eslint \" packages/**/*.ts\" \" examples/**/*.ts\" --fix"
52
+ ]
45
53
}
46
54
}
You can’t perform that action at this time.
0 commit comments