-
Notifications
You must be signed in to change notification settings - Fork 833
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
100x yarn install / build speeds by upgrading to yarn v3 (#3434)
* yarn v3 * yarn v3 * undo yarn build change * redo * yarn cache immutable * bump yarn to v3 min
- Loading branch information
Showing
27 changed files
with
39,531 additions
and
28,809 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.{js,json,yml}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/.yarn/** linguist-vendored | ||
/.yarn/releases/* binary | ||
/.yarn/plugins/**/* binary | ||
/.pnp.* binary linguist-generated |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
enableTelemetry: false | ||
|
||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs | ||
spec: "@yarnpkg/plugin-version" | ||
|
||
yarnPath: .yarn/releases/yarn-3.5.0.cjs | ||
|
||
logFilters: | ||
- code: YN0002 | ||
level: discard | ||
- code: YN0060 | ||
level: discard | ||
- code: YN0006 | ||
level: discard | ||
- code: YN0076 | ||
level: discard |
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
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,5 +1,6 @@ | ||
{ | ||
"name": "backpack", | ||
"packageManager": "[email protected]", | ||
"private": true, | ||
"workspaces": { | ||
"packages": [ | ||
|
@@ -11,41 +12,30 @@ | |
"packages/*", | ||
"packages/blockchains/*", | ||
"web" | ||
], | ||
"nohoist": [ | ||
"**/react-native", | ||
"**/react-native/**", | ||
"**/react-native-scripts", | ||
"**/react-native-scripts/**", | ||
"**/expo", | ||
"**/expo/**", | ||
"**/jest-expo", | ||
"**/jest-expo/**" | ||
] | ||
}, | ||
"scripts": { | ||
"lint": "turbo run lint --filter=!@coral-xyz/app-mobile", | ||
"lint:fix": "turbo run lint:fix --filter=!@coral-xyz/app-mobile", | ||
"prepare": "husky install", | ||
"start": "env-cmd --silent turbo run start --concurrency=100% --filter=./packages/*", | ||
"start:fresh": "yarn install && yarn clean && yarn install && yarn start", | ||
"test": "env-cmd --silent turbo run test -- --passWithNoTests --watchAll=false", | ||
"build": "env-cmd --silent turbo run build --filter=!./examples/**", | ||
"build": "env-cmd --silent turbo run build --filter='!./examples/**' ", | ||
"build:fresh": "git clean -xfd && yarn install && yarn build --force", | ||
"e2e": "env-cmd --silent turbo run e2e", | ||
"clean": "git clean -xfd", | ||
"start:ext": "env-cmd --silent turbo run start --filter=@coral-xyz/app-extension... --filter=@coral-xyz/background...", | ||
"build:ext": "env-cmd --silent turbo run build --filter=@coral-xyz/app-extension... --filter=@coral-xyz/background...", | ||
"start:mobile": "env-cmd --silent turbo run start --filter=@coral-xyz/app-mobile... --filter=@coral-xyz/background...", | ||
"build:mobile": "env-cmd --silent turbo run build --filter=@coral-xyz/app-mobile... --filter=@coral-xyz/background...", | ||
"postinstall": "yarn-deduplicate --scopes @babel @mui @typescript-eslint @types @react-native-community @react-navigation @emotion" | ||
"postinstall": "husky install" | ||
}, | ||
"devDependencies": { | ||
"buffer": "^5.5.0", | ||
"env-cmd": "^10.1.0", | ||
"eslint": "^8.31.0", | ||
"graphql": "^16.6.0", | ||
"husky": "^8.0.1", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^12.4.1", | ||
"prettier": "^2.8.1", | ||
"turbo": "^1.8.3", | ||
|
@@ -75,7 +65,7 @@ | |
}, | ||
"engines": { | ||
"node": "18.x", | ||
"yarn": "^1.22.17" | ||
"yarn": "^3.0.0" | ||
}, | ||
"dependencies": { | ||
"patch-package": "^6.5.0" | ||
|
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
4 changes: 0 additions & 4 deletions
4
packages/eslint-config-custom/eslint-plugin-zeus-custom/yarn.lock
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
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
Oops, something went wrong.
47dbee8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
backpack – ./
devnet.backpack.app
backpack-git-master-200ms.vercel.app
backpack.app
www.backpack.app
backpack-200ms.vercel.app