Skip to content

Commit 050abe6

Browse files
mefoglejohnprg
authored andcommitted
Adding a couple of "start" commands to enable the dojo to be run in production mode (e.g., "pnpm run start" vs. "pnpm run dev").
1 parent e25d8e0 commit 050abe6

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

typescript-sdk/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"clean": "rm -rf dist .turbo node_modules && pnpm -r clean",
88
"build:clean": "rm -rf dist .turbo node_modules && pnpm -r clean && pnpm install && turbo run build",
99
"dev": "turbo run dev",
10+
"start": "turbo run start",
1011
"lint": "turbo run lint",
1112
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
1213
"check-types": "turbo run check-types",

typescript-sdk/turbo.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
},
4343
"unlink:global": {
4444
"cache": false
45+
},
46+
"start": {
47+
"dependsOn": ["^build"],
48+
"cache": false,
49+
"persistent": true
4550
}
4651
}
4752
}

0 commit comments

Comments
 (0)