File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ jobs:
42
42
apt-get install -y build-essential python3 libusb-1.0-0-dev libudev-dev
43
43
npm install -g node-gyp node-gyp-build
44
44
45
- - run : bun install
45
+ - run : yarn install
46
46
47
- - run : bun run format:check
47
+ - run : yarn format:check
48
48
49
- - run : bun lint
49
+ - run : yarn lint
50
50
51
- - run : bun test
51
+ - run : yarn test
Original file line number Diff line number Diff line change 27
27
" package.json"
28
28
],
29
29
"scripts" : {
30
- "build" : " bunx tsc" ,
31
- "format" : " FORCE_COLOR=1 bunx prettier --write . && bunx sort-package-json" ,
32
- "format:check" : " FORCE_COLOR=1 bunx prettier --check ." ,
33
- "lint" : " bunx eslint ." ,
34
- "lint:fix" : " bunx eslint --fix ." ,
35
- "test" : " bun run build && bunx jest ." ,
36
- "upgrade" : " bunx npm-check-updates -i"
30
+ "build" : " tsc" ,
31
+ "format" : " FORCE_COLOR=1 prettier --write . && sort-package-json" ,
32
+ "format:check" : " FORCE_COLOR=1 prettier --check ." ,
33
+ "lint" : " eslint ." ,
34
+ "lint:fix" : " eslint --fix ." ,
35
+ "test" : " yarn build && jest ." ,
36
+ "upgrade" : " npx npm-check-updates -i"
37
37
},
38
38
"dependencies" : {
39
39
"@ledgerhq/hw-transport" : " 6.31.9" ,
You can’t perform that action at this time.
0 commit comments