Skip to content

Commit b92c570

Browse files
authored
Merge pull request #73 from Zondax/update
Update package
2 parents 255bae7 + 01c2139 commit b92c570

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
apt-get install -y build-essential python3 libusb-1.0-0-dev libudev-dev
4343
npm install -g node-gyp node-gyp-build
4444
45-
- run: bun install
45+
- run: yarn install
4646

47-
- run: bun run format:check
47+
- run: yarn format:check
4848

49-
- run: bun lint
49+
- run: yarn lint
5050

51-
- run: bun test
51+
- run: yarn test

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"package.json"
2828
],
2929
"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"
3737
},
3838
"dependencies": {
3939
"@ledgerhq/hw-transport": "6.31.9",

0 commit comments

Comments
 (0)