From eff8fe7ea9f2674383b7b8ea1232be49626fc595 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Mon, 28 Aug 2023 18:36:05 +0100 Subject: [PATCH] chore: typescript script names should be consistent (#1843) The other script names were using ":" to separate scope while "test-debug" was using a hyphen which is inconsistent. # Checklist: Remove the checklist to signal you've completed it. Enable auto-merge if the PR is ready to merge. - [ ] If the pull request requires a cryptography review (e.g. cryptographic algorithm implementations) I have added the 'crypto' tag. - [ ] I have reviewed my diff in github, line by line and removed unexpected formatting changes, testing logs, or commented-out code. - [ ] Every change is related to the PR description. - [ ] I have [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this pull request to relevant issues (if any exist). --- circuits/cpp/barretenberg/ts/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuits/cpp/barretenberg/ts/package.json b/circuits/cpp/barretenberg/ts/package.json index 0fc7a235f77..934084be187 100644 --- a/circuits/cpp/barretenberg/ts/package.json +++ b/circuits/cpp/barretenberg/ts/package.json @@ -33,7 +33,7 @@ "test": "yarn build:ts:browser && yarn build:ts:node && yarn test:jest && yarn test:bin", "test:jest": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --passWithNoTests", "test:bin": "cd ./bin-test && ./bin-test.sh", - "test-debug": "NODE_NO_WARNINGS=1 node --inspect-brk=0.0.0.0 --experimental-vm-modules $(yarn bin jest) --no-cache --passWithNoTests --runInBand", + "test:debug": "NODE_NO_WARNINGS=1 node --inspect-brk=0.0.0.0 --experimental-vm-modules $(yarn bin jest) --no-cache --passWithNoTests --runInBand", "prepack": "yarn build", "deploy": "npm publish --access public" },