Skip to content

Commit

Permalink
toplevel
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmgdr committed Oct 24, 2023
1 parent 2ff9d9b commit 7994af8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/phone-number-privacy/Dockerfile-combiner
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ COPY --from=packages celo-phone-number-privacy/packages/${PACKAGE_SELECTOR} pack
# Install dependencies and build.
RUN yarn -v
RUN yarn workspaces focus @celo/phone-number-privacy-combiner
RUN yarn workspaces foreach -Rpt --from @celo/phone-number-privacy-combiner run build
RUN yarn workspaces foreach --recursive --from @celo/phone-number-privacy-combiner run build

RUN rm -r .git

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"license": "MIT",
"scripts": {
"build": "yarn g:tsc",
"build": "yarn --top-level tsc -b .",
"lint": "eslint ."
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/phone-number-privacy/combiner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"start": "yarn build && node -r dotenv/config dist/index.js",
"start:docker": "yarn build && node dist/index.js",
"start:docker:tracing": "yarn build && node --require ./dist/tracing.js dist/index.js",
"clean": "yarn g:tsc --clean",
"build": "yarn g:tsc",
"clean": "yarn g:tsc . --clean",
"build": "yarn g:tsc .",
"lint": "eslint .",
"test": "yarn jest --runInBand --testPathIgnorePatterns test/end-to-end",
"test:debughandles": "jest --watch --runInBand --detectOpenHandles --testPathIgnorePatterns test/end-to-end",
Expand Down
4 changes: 2 additions & 2 deletions packages/phone-number-privacy/signer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"start": "yarn build && node -r dotenv/config dist/index.js",
"start:docker": "yarn build && node dist/index.js",
"start:docker:tracing": "yarn build && node --require ./dist/tracing.js dist/index.js",
"clean": "yarn g:tsc --clean",
"build": "yarn g:tsc",
"clean": "yarn g:tsc . --clean",
"build": "yarn g:tsc .",
"lint": "eslint .",
"test": "jest --testPathIgnorePatterns test/end-to-end",
"test:debughandles": "jest --watch --runInBand --detectOpenHandles --testPathIgnorePatterns test/end-to-end",
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/encrypted-backup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"encrypted-backup"
],
"scripts": {
"build": "yarn g:tsc",
"clean": "yarn g:tsc --clean",
"build": "yarn g:tsc .",
"clean": "yarn g:tsc . --clean",
"docs": "typedoc",
"test": "yarn jest --runInBand",
"lint": "eslint .",
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/identity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"odis"
],
"scripts": {
"build": "yarn g:tsc",
"clean": "yarn g:tsc --clean",
"build": "yarn run --top-level tsc --build .",
"clean": "yarn run --top-level tsc --build . --clean",
"docs": "typedoc",
"test": "yarn jest --runInBand --testPathIgnorePatterns src/odis/identifier-backwards-compatibility.test.ts",
"lint": "eslint .",
Expand Down

0 comments on commit 7994af8

Please sign in to comment.