Skip to content

Commit

Permalink
Fix typedoc prepare script to use npm
Browse files Browse the repository at this point in the history
Reason: typedoc has package.lock, and yarn install would not install locked
dependencies but the newest one, hence breaking on newer packages than
the ones that actually work being pulled
  • Loading branch information
refi93 committed Jun 8, 2021
1 parent 47927d4 commit 37c39d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -61,7 +61,7 @@
},
"homepage": "https://github.com/cardano-foundation/ledgerjs-hw-app-cardano",
"scripts": {
"prepare": "cd node_modules/typedoc && yarn install && yarn build",
"prepare": "cd node_modules/typedoc && npm install && npm run build",
"prepack": "yarn build:flowtypes && yarn flow",
"lint": "yarn eslint . --max-warnings=0",
"clean": "rm -rf dist/",
Expand Down

0 comments on commit 37c39d2

Please sign in to comment.