Skip to content

Commit

Permalink
fix: update paths on package json scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
frost-ostrich committed Jan 19, 2024
1 parent a8307ea commit 4c95834
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/dapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
},
"scripts": {
"prepare": "yarn typechain:compile && yarn typechain:safe && yarn typechain:copy && yarn codegen:safe-api-v1",
"typechain:compile": "cd ../../protocol && yarn compile --force",
"typechain:safe": "cd ../../protocol && yarn typechain:safe",
"typechain:compile": "(cd ../../protocol && yarn compile --force)",
"typechain:safe": "(cd ../../protocol && yarn typechain:safe)",
"typechain:copy": "cp -r ../../protocol/typechain ./src/types",
"dev": "vite",
"compile": "tsc",
Expand All @@ -18,7 +18,7 @@
"version:release": "standard-version",
"version:prerelease": "standard-version --prerelease beta",
"build-with-stats": "tsc && BUILD_STATS=true vite build",
"safe-api-v1-host":"(cd src/safe/open-api && ./replace-host.sh)",
"safe-api-v1-host":"(cd ./src/safe/open-api && ./replace-host.sh)",
"codegen:safe-api-v1": "yarn safe-api-v1-host && openapi --input ./src/safe/open-api/apiV1.json --output ./src/safe/open-api/client"
},
"dependencies": {
Expand Down

0 comments on commit 4c95834

Please sign in to comment.