Skip to content

Commit

Permalink
formatting and ci
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Glastra <[email protected]>
  • Loading branch information
TimoGlastra committed Jun 8, 2024
1 parent ef85121 commit d2887ee
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 28 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,13 +263,10 @@ jobs:
run: pnpm build

- name: Lint
run: pnpm lint

- name: Check format
run: pnpm check-format
run: pnpm style:check

- name: Check types
run: pnpm check-types
run: pnpm types:check

- name: Run local node pool
run: |
Expand Down
5 changes: 1 addition & 4 deletions wrappers/javascript/indy-vdr-nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
"publishConfig": {
"access": "public"
},
"files": [
"build",
"scripts"
],
"files": ["build", "scripts"],
"scripts": {
"build": "pnpm clean && pnpm compile",
"clean": "rimraf -rf ./build",
Expand Down
4 changes: 1 addition & 3 deletions wrappers/javascript/indy-vdr-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"files": ["build"],
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rimraf -rf ./build",
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"allowBranch": "main"
}
}
}
}
19 changes: 4 additions & 15 deletions wrappers/javascript/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,10 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@hyperledger/indy-vdr-nodejs": [
"indy-vdr-nodejs/src"
],
"@hyperledger/indy-vdr-react-native": [
"indy-vdr-react-native/src"
],
"@hyperledger/indy-vdr-shared": [
"indy-vdr-shared/src"
]
"@hyperledger/indy-vdr-nodejs": ["indy-vdr-nodejs/src"],
"@hyperledger/indy-vdr-react-native": ["indy-vdr-react-native/src"],
"@hyperledger/indy-vdr-shared": ["indy-vdr-shared/src"]
}
},
"exclude": [
"node_modules",
"**/build/**",
"build",
"vite.config.mts"
]
"exclude": ["node_modules", "**/build/**", "build", "vite.config.mts"]
}

0 comments on commit d2887ee

Please sign in to comment.