-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: minor problems with
aztec
publishing (#3095)
Co-authored-by: Tom French <git@tomfren.ch>
- Loading branch information
1 parent
f47d07a
commit 0fc8f20
Showing
9 changed files
with
106 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,48 @@ | ||
{ | ||
"name": "@noir-lang/root", | ||
"private": true, | ||
"workspaces": [ | ||
"compiler/wasm", | ||
"compiler/source-resolver", | ||
"compiler/integration-tests", | ||
"tooling/noir_js_types", | ||
"tooling/noirc_abi_wasm", | ||
"tooling/noir_js", | ||
"tooling/noir_js_backend_barretenberg", | ||
"acvm-repo/acvm_js", | ||
"release-tests" | ||
], | ||
"scripts": { | ||
"build": "yarn workspaces foreach --parallel --topological-dev --verbose run build", | ||
"test": "yarn workspaces foreach run test", | ||
"test:integration": "yarn workspace integration-tests test", | ||
"clean:workspaces": "yarn workspaces foreach --exclude @noir-lang/root run clean", | ||
"clean:root": "rm -rf ./result ./target", | ||
"clean": "yarn clean:workspaces && yarn clean:root", | ||
"lint": "yarn workspaces foreach --verbose run lint", | ||
"build:with:nix": "nix build -L .#all_wasm", | ||
"install:from:nix:noirc_abi_wasm": "cp -rL ./result/noirc_abi_wasm/nodejs ./tooling/noirc_abi_wasm && cp -rL ./result/noirc_abi_wasm/web ./tooling/noirc_abi_wasm", | ||
"install:from:nix:noir_wasm": "cp -rL ./result/noir_wasm/nodejs ./compiler/wasm && cp -rL ./result/noir_wasm/web ./compiler/wasm", | ||
"install:from:nix:acvm_js": "cp -rL ./result/acvm_js/nodejs ./acvm-repo/acvm_js && cp -rL ./result/acvm_js/web ./acvm-repo/acvm_js", | ||
"install:from:nix": "yarn build:with:nix && yarn install:from:nix:noirc_abi_wasm && yarn install:from:nix:noir_wasm && yarn install:from:nix:acvm_js", | ||
"build:types": "yarn workspace @noir-lang/types run build", | ||
"build:source-resolver": "yarn workspace @noir-lang/source-resolver run build", | ||
"build:backend_barretenberg": "yarn workspace @noir-lang/backend_barretenberg run build", | ||
"build:noir_js": "yarn workspace @noir-lang/noir_js run build", | ||
"build:js:only": "yarn build:types && yarn build:source-resolver && yarn build:backend_barretenberg && yarn build:noir_js", | ||
"prepare:publish": "yarn clean && yarn install:from:nix && yarn build:js:only", | ||
"nightly:version": "yarn workspaces foreach run nightly:version", | ||
"publish:all": "yarn install && yarn workspaces foreach run publish" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^6.7.3", | ||
"@typescript-eslint/parser": "^6.7.3", | ||
"chai": "^4.3.7", | ||
"eslint": "^8.50.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"mocha": "^10.2.0", | ||
"prettier": "3.0.3", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.0.4" | ||
}, | ||
"packageManager": "yarn@3.6.4" | ||
"name": "@noir-lang/root", | ||
"private": true, | ||
"workspaces": [ | ||
"compiler/wasm", | ||
"compiler/source-resolver", | ||
"compiler/integration-tests", | ||
"tooling/noir_js_types", | ||
"tooling/noirc_abi_wasm", | ||
"tooling/noir_js", | ||
"tooling/noir_js_backend_barretenberg", | ||
"acvm-repo/acvm_js", | ||
"release-tests" | ||
], | ||
"scripts": { | ||
"build": "yarn workspaces foreach --parallel --topological-dev --verbose run build", | ||
"test": "yarn workspaces foreach run test", | ||
"test:integration": "yarn workspace integration-tests test", | ||
"clean:workspaces": "yarn workspaces foreach --exclude @noir-lang/root run clean", | ||
"clean:root": "rm -rf ./result ./target", | ||
"clean": "yarn clean:workspaces && yarn clean:root", | ||
"lint": "yarn workspaces foreach --verbose run lint", | ||
"install:acvm_js": "yarn workspace @noir-lang/acvm_js run install:from:nix", | ||
"install:noir_wasm": "yarn workspace @noir-lang/noir_wasm run install:from:nix", | ||
"install:noirc_abi_wasm": "yarn workspace @noir-lang/noirc_abi run install:from:nix", | ||
"install:from:nix": "yarn install:acvm_js && yarn install:noir_wasm && yarn install:noirc_abi_wasm", | ||
"build:types": "yarn workspace @noir-lang/types run build", | ||
"build:source-resolver": "yarn workspace @noir-lang/source-resolver run build", | ||
"build:backend_barretenberg": "yarn workspace @noir-lang/backend_barretenberg run build", | ||
"build:noir_js": "yarn workspace @noir-lang/noir_js run build", | ||
"build:js:only": "yarn build:types && yarn build:source-resolver && yarn build:backend_barretenberg && yarn build:noir_js", | ||
"prepare:publish": "yarn clean && yarn install:from:nix && yarn build:js:only", | ||
"nightly:version": "yarn workspaces foreach run nightly:version", | ||
"publish:all": "yarn install && yarn workspaces foreach run publish" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^6.7.3", | ||
"@typescript-eslint/parser": "^6.7.3", | ||
"chai": "^4.3.7", | ||
"eslint": "^8.50.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"mocha": "^10.2.0", | ||
"prettier": "3.0.3", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.0.4" | ||
}, | ||
"packageManager": "yarn@3.6.4" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters