Skip to content

Commit 1025ff5

Browse files
v0[bot]fyalavuz
andcommitted
fix: simplify workspace for v0 standalone docs app
Remove workspace dependency, update dev script, and simplify pnpm workspace. Co-authored-by: Fırat <826388+fyalavuz@users.noreply.github.com>
1 parent 2660e5a commit 1025ff5

4 files changed

Lines changed: 100 additions & 4160 deletions

File tree

apps/docs/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {
6-
"dev": "next dev --port 3002 --turbopack",
6+
"dev": "next dev --turbopack",
77
"build": "next build",
8-
"start": "next start --port 3002"
8+
"start": "next start"
99
},
1010
"dependencies": {
1111
"@radix-ui/react-tabs": "^1.1.2",
12-
"appshell-react": "workspace:*",
1312
"class-variance-authority": "^0.7.1",
1413
"clsx": "^2.1.1",
1514
"framer-motion": "^12.6.0",

package.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,17 @@
22
"name": "appshell",
33
"private": true,
44
"scripts": {
5-
"build": "turbo run build",
5+
"build": "pnpm --filter @appshell-react/docs build",
66
"dev": "pnpm --filter @appshell-react/docs dev",
7-
"dev:turbo": "turbo run dev --filter=@appshell-react/docs",
8-
"dev:all": "turbo run dev",
9-
"lint": "turbo run lint",
10-
"test": "turbo run test",
11-
"test:e2e": "turbo run test:e2e",
12-
"typecheck": "turbo run typecheck",
13-
"clean": "turbo run clean && rm -rf node_modules",
7+
"dev:all": "npx turbo run dev",
8+
"lint": "npx turbo run lint",
9+
"test": "npx turbo run test",
10+
"test:e2e": "npx turbo run test:e2e",
11+
"typecheck": "npx turbo run typecheck",
12+
"clean": "npx turbo run clean && rm -rf node_modules",
1413
"changeset": "changeset",
1514
"version-packages": "changeset version",
16-
"release": "turbo run build && changeset publish"
15+
"release": "pnpm --filter appshell-react build && changeset publish"
1716
},
1817
"devDependencies": {
1918
"@changesets/changelog-github": "^0.5.2",

0 commit comments

Comments
 (0)