Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update yarn version to v4 #429

Merged
merged 3 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
550 changes: 0 additions & 550 deletions .yarn/plugins/@yarnpkg/plugin-version.cjs

This file was deleted.

28 changes: 0 additions & 28 deletions .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

This file was deleted.

873 changes: 0 additions & 873 deletions .yarn/releases/yarn-3.4.1.cjs

This file was deleted.

893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.1.1.cjs

Large diffs are not rendered by default.

12 changes: 5 additions & 7 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
checksumBehavior: update

nodeLinker: node-modules
compressionLevel: mixed

enableGlobalCache: false

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
spec: "@yarnpkg/plugin-version"
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.4.1.cjs
yarnPath: .yarn/releases/yarn-4.1.1.cjs
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
"bugs": "https://github.com/privacy-scaling-explorations/bandada/issues",
"private": true,
"scripts": {
"start": "yarn workspaces foreach -pi run start",
"dev": "yarn workspaces foreach -pi run dev",
"start": "yarn workspaces foreach -A -pi run start",
"dev": "yarn workspaces foreach -A -pi run dev",
"test": "jest && yarn workspace contracts test",
"test:coverage": "yarn test:jest:coverage && yarn test:contracts:coverage",
"test:jest:coverage": "jest --coverage",
"test:contracts:coverage": "yarn workspace contracts test:coverage",
"build": "yarn workspaces foreach -t run build && yarn workspace contracts compile",
"build": "yarn workspaces foreach -A -t run build && yarn workspace contracts compile",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && yarn workspace contracts lint",
"prettier": "prettier -c .",
"prettier:write": "prettier -w .",
"version:bump": "yarn workspaces foreach --no-private version -d ${0} && yarn version apply --all && git commit -am \"chore: v${0}\" && git tag v${0}",
"version:publish": "yarn workspaces foreach --no-private run build && yarn workspaces foreach --no-private npm publish --tolerate-republish",
"version:bump": "yarn workspaces foreach -A --no-private version -d ${0} && yarn version apply --all && git commit -am \"chore: v${0}\" && git tag v${0}",
"version:publish": "yarn workspaces foreach -A --no-private run build && yarn workspaces foreach -A --no-private npm publish --tolerate-republish",
"version:release": "changelogithub",
"commit": "cz",
"precommit": "lint-staged",
Expand All @@ -29,7 +29,7 @@
"apps/*",
"apps/contracts/contracts"
],
"packageManager": "yarn@3.4.1",
"packageManager": "yarn@4.1.1",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.4.3",
Expand Down
Loading
Loading