Skip to content

Commit

Permalink
fix: transpiler build (AztecProtocol#4386)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 authored Feb 2, 2024
1 parent 04d37eb commit 7eb279c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build_manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,5 @@ avm-transpiler:
buildDir: .
dockerfile: avm-transpiler/Dockerfile
rebuildPatterns:
- ^avm-transpiler/
- ^avm-transpiler/
- ^noir/
2 changes: 1 addition & 1 deletion yarn-project/noir-contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"formatting": "run -T prettier --check ./src && run -T eslint ./src",
"formatting:fix": "run -T eslint --fix ./src && run -T prettier -w ./src",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --passWithNoTests",
"build:contracts": "./scripts/compile.sh && ./scripts/generate-types.sh"
"build:contracts": "./scripts/compile.sh && ./scripts/transpile.sh && ./scripts/generate-types.sh"
},
"inherits": [
"../package.common.json",
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/noir-contracts/package.local.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scripts": {
"build": "yarn clean && yarn build:contracts && tsc -b",
"build:contracts": "./scripts/compile.sh && ./scripts/generate-types.sh",
"build:contracts": "./scripts/compile.sh && ./scripts/transpile.sh && ./scripts/generate-types.sh",
"clean": "rm -rf ./dest .tsbuildinfo ./src ./target"
}
}

0 comments on commit 7eb279c

Please sign in to comment.