Skip to content

Commit

Permalink
fix: correct paths for namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
angusbayley committed Sep 6, 2024
1 parent ac1c678 commit b5a9e58
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tools/actions/turbo-affected/build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -19333,20 +19333,20 @@ var package_default = {
"build:llm:deps": 'pnpm turbo build --no-daemon --filter="./apps/ledger-live-mobile^..."',
"build:ljs": 'pnpm turbo build --no-daemon --filter="./libs/ledgerjs/**"',
"build:web-tools": "pnpm turbo build --no-daemon --filter=./apps/web-tools",
"build-ci:llm:ios": "pnpm turbo ios:ci:adhoc --no-daemon --filter=.apps/ledger-live-mobile",
"build-ci:llm:android": "pnpm turbo android:apk --no-daemon --filter=.apps/ledger-live-mobile",
"build-ci:llm:ios": "pnpm turbo ios:ci:adhoc --no-daemon --filter=./apps/ledger-live-mobile",
"build-ci:llm:android": "pnpm turbo android:apk --no-daemon --filter=./apps/ledger-live-mobile",
"clean:ljs": 'pnpm turbo clean --no-daemon --filter="./libs/ledgerjs/**"',
"doc:ljs": 'pnpm turbo doc --no-daemon --filter="./libs/ledgerjs/**"',
"watch:ljs": 'pnpm turbo watch --no-daemon --filter="./libs/ledgerjs/**"',
"watch:common": "pnpm turbo watch --no-daemon --filter=./libs/ledger-live-common",
"dev:cli": "pnpm turbo watch --no-daemon --filter=@ledgerhq/live-cli",
"dev:lld": "pnpm turbo start --no-daemon --filter=.apps/ledger-live-desktop",
"dev:lld:debug": "DEV_TOOLS=1 LEDGER_INTERNAL_ARGS=--inspect ELECTRON_ARGS=--remote-debugging-port=8315 pnpm turbo start --no-daemon --filter=.apps/ledger-live-desktop",
"dev:llm": "pnpm turbo start --no-daemon --filter=.apps/ledger-live-mobile",
"release:lld": "pnpm turbo release --no-daemon --filter=.apps/ledger-live-desktop",
"pre:lld": "pnpm turbo pre-build --no-daemon --filter=.apps/ledger-live-desktop",
"dev:lld": "pnpm turbo start --no-daemon --filter=./apps/ledger-live-desktop",
"dev:lld:debug": "DEV_TOOLS=1 LEDGER_INTERNAL_ARGS=--inspect ELECTRON_ARGS=--remote-debugging-port=8315 pnpm turbo start --no-daemon --filter=./apps/ledger-live-desktop",
"dev:llm": "pnpm turbo start --no-daemon --filter=./apps/ledger-live-mobile",
"release:lld": "pnpm turbo release --no-daemon --filter=./apps/ledger-live-desktop",
"pre:lld": "pnpm turbo pre-build --no-daemon --filter=./apps/ledger-live-desktop",
nightly: "pnpm turbo nightly --no-daemon",
"nightly:lld": "pnpm turbo nightly --no-daemon --filter=.apps/ledger-live-desktop",
"nightly:lld": "pnpm turbo nightly --no-daemon --filter=./apps/ledger-live-desktop",
test: "pnpm turbo test --no-daemon --concurrency=50%",
"run:cli": "./apps/cli/bin/index.js",
lint: "pnpm turbo lint --no-daemon",
Expand Down

0 comments on commit b5a9e58

Please sign in to comment.