Skip to content

Commit

Permalink
fix(noir-contracts): disable transpilation for now (#4372)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanks12 committed Feb 1, 2024
1 parent ee560c3 commit 37662b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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/transpile.sh && ./scripts/generate-types.sh"
"build:contracts": "./scripts/compile.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/transpile.sh && ./scripts/generate-types.sh",
"build:contracts": "./scripts/compile.sh && ./scripts/generate-types.sh",
"clean": "rm -rf ./dest .tsbuildinfo ./src ./target"
}
}

0 comments on commit 37662b7

Please sign in to comment.