Skip to content

Commit 7f0c212

Browse files
committed
chore: add top-level project tasks
Signed-off-by: Sam Gammon <sam@elide.ventures>
1 parent 6899624 commit 7f0c212

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
{
22
"private": true,
33
"scripts": {
4-
"dev": "turbo dev",
4+
"dev": "turbo dev --api='https://turbo.less.build' --token=$BUILDLESS_APIKEY --remote-only=true --no-daemon",
55
"build": "turbo build --api='https://turbo.less.build' --token=$BUILDLESS_APIKEY --remote-only=true --no-daemon",
66
"clean": "turbo clean && rm -rf node_modules",
7-
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore"
7+
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
8+
"start:native": "cd apps/native && pnpm run start",
9+
"android": "pnpm run native:android",
10+
"ios": "pnpm run native:ios",
11+
"native:android": "cd apps/native && pnpm run android",
12+
"native:ios": "cd apps/native && pnpm run ios",
13+
"native:web": "cd apps/native && pnpm run web",
14+
"native:dev": "cd apps/native && pnpm run dev"
815
},
916
"devDependencies": {
10-
"prettier": "latest",
17+
"prettier": "3.0.3",
1118
"turbo": "latest"
1219
},
1320
"packageManager": "pnpm@8.7.5"

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)