forked from privacy-scaling-explorations/zk-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove solidity packages and conf (privacy-scaling-exploration…
…s#286) * chore: remove solidity packages and conf re privacy-scaling-explorations#282 * chore: update lockfile * ci: fix syntax typo * docs: rename workflow * chore: fix turbo configuration re privacy-scaling-explorations#282 * chore: remove legacy packages re privacy-scaling-explorations#282 * Update turbo.json Co-authored-by: sripwoud <[email protected]> * Update turbo.json Co-authored-by: sripwoud <[email protected]> * Update turbo.json Co-authored-by: sripwoud <[email protected]> * Update turbo.json Co-authored-by: sripwoud <[email protected]> * Update turbo.json Co-authored-by: sripwoud <[email protected]> * ci: use paths instead of changed-files action re privacy-scaling-explorations#282 * chore: update turbo conf re privacy-scaling-explorations#282 --------- Co-authored-by: sripwoud <[email protected]>
- Loading branch information
Showing
99 changed files
with
172 additions
and
7,979 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,11 @@ on: | |
push: | ||
branches: | ||
- main | ||
paths: | ||
- packages/**/src/*.{ts,js} | ||
pull_request: | ||
paths: | ||
- packages/**/src/*.{ts,js} | ||
|
||
jobs: | ||
gh-pages: | ||
|
@@ -24,13 +28,13 @@ jobs: | |
run: yarn | ||
|
||
- name: Build libraries | ||
run: yarn build:libraries | ||
run: yarn build | ||
|
||
- name: Generate doc website | ||
run: yarn docs | ||
|
||
- name: Publish on Github Pages | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
- if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
name: Publish on Github Pages | ||
uses: crazy-max/[email protected] | ||
with: | ||
build_dir: docs | ||
|
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 was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
{ | ||
"**/*.{js,ts,jsx,tsx,md,json,sol}": "prettier --write", | ||
"**/*.{js,ts,jsx,tsx,md,json,yml,yaml}": "prettier --write", | ||
"**/*.{js,ts,jsx,tsx}": "eslint" | ||
} |
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,25 +1,22 @@ | ||
{ | ||
"name": "zk-kit", | ||
"description": "A monorepo of reusable libraries for zero-knowledge technologies.", | ||
"description": "A monorepo of reusable JS libraries for zero-knowledge technologies.", | ||
"license": "MIT", | ||
"repository": "[email protected]:privacy-scaling-explorations/zk-kit.git", | ||
"homepage": "https://github.com/privacy-scaling-explorations/zk-kit", | ||
"bugs": "https://github.com/privacy-scaling-explorations/zk-kit/issues", | ||
"private": true, | ||
"scripts": { | ||
"build": "turbo build", | ||
"_build:libraries": "yarn workspaces foreach -A -t --no-private run build", | ||
"build:libraries": "turbo _build:libraries", | ||
"test": "turbo _test:libraries test:coverage", | ||
"_test:libraries": "jest --coverage", | ||
"test:libraries": "turbo _test:libraries", | ||
"_build": "yarn workspaces foreach -A -t --no-private run build", | ||
"build": "turbo _build", | ||
"_test": "jest --coverage", | ||
"test": "turbo _test", | ||
"test:library": "jest packages/${0}", | ||
"test:contracts": "turbo test:coverage", | ||
"version:bump": "yarn workspace @zk-kit/${0} version ${1} && yarn remove:stable-version-field ${0} && NO_HOOK=1 git commit -am \"chore(${0}): v${1}\" && git tag ${0}-v${1}", | ||
"version:publish": "yarn workspaces foreach -A --no-private npm publish --tolerate-republish --access public", | ||
"version:release": "changelogithub", | ||
"lint:eslint": "eslint . --ext .js,.ts", | ||
"lint": "turbo lint:eslint lint", | ||
"lint": "turbo lint:eslint", | ||
"format:prettier": "prettier -c .", | ||
"format:prettier:write": "prettier -w .", | ||
"format": "turbo format:prettier", | ||
|
@@ -29,7 +26,7 @@ | |
"remove:stable-version-field": "ts-node scripts/remove-stable-version-field.ts ${0} && yarn format:prettier:write", | ||
"precommit": "lint-staged", | ||
"postinstall": "husky && git config --local core.editor cat", | ||
"style": "turbo lint:eslint lint format:prettier" | ||
"style": "turbo lint:eslint format:prettier" | ||
}, | ||
"keywords": [ | ||
"javascript", | ||
|
@@ -39,12 +36,10 @@ | |
"zk-snarks" | ||
], | ||
"workspaces": [ | ||
"packages/*", | ||
"packages/*/contracts" | ||
"packages/*" | ||
], | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"@aztec/bb.js": "^0.33.0", | ||
"@commitlint/cli": "^18.6.1", | ||
"@commitlint/config-conventional": "^18.6.2", | ||
"@types/glob": "^7.2.0", | ||
|
Oops, something went wrong.