forked from LedgerHQ/ledger-live
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72df2ba
commit ffe97cd
Showing
6 changed files
with
242 additions
and
23 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 |
---|---|---|
|
@@ -5,22 +5,24 @@ | |
"private": true, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"turbo": "^1.1.0" | ||
"turbo": "^1.1.0", | ||
"x-run": "workspace:*" | ||
}, | ||
"scripts": { | ||
"clean": "git clean -fdX", | ||
"build": "./node_modules/turbo/bin/turbo run build --ignore='apps/*' --no-deps", | ||
"build": "pnpm run:turbo -- run build --ignore='apps/*' --no-deps", | ||
"build:libs": "pnpm -r build --filter='./libs'", | ||
"test": "./node_modules/turbo/bin/turbo run build test --include-dependencies --no-deps", | ||
"lld:dev": "./node_modules/turbo/bin/turbo run start --scope=live-desktop --include-dependencies --no-deps --no-cache", | ||
"llm:dev": "./node_modules/turbo/bin/turbo run start --scope=live-mobile --include-dependencies --no-deps --no-cache", | ||
"test": "pnpm run:turbo -- run build test --include-dependencies --no-deps", | ||
"lld:dev": "pnpm run:turbo -- run start --scope=live-desktop --include-dependencies --no-deps --no-cache", | ||
"llm:dev": "pnpm run:turbo -- run start --scope=live-mobile --include-dependencies --no-deps --no-cache", | ||
"desktop": "pnpm --filter live-desktop", | ||
"mobile": "pnpm --filter live-mobile", | ||
"common": "pnpm --filter live-common", | ||
"ui:react": "pnpm --filter react-ui", | ||
"ui:native": "pnpm --filter native-ui", | ||
"ui:icons": "pnpm --filter icons-ui", | ||
"ui:shared": "pnpm --filter shared-ui" | ||
"ui:shared": "pnpm --filter shared-ui", | ||
"run:turbo": "x-run node_modules/turbo/bin/turbo" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
|
Oops, something went wrong.