Skip to content

Commit

Permalink
chore: Exclude docs form build
Browse files Browse the repository at this point in the history
  • Loading branch information
aXenDeveloper committed Jun 28, 2024
1 parent 1bfd8d5 commit a41e705
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,8 @@ jobs:
- name: Build Scripts
run: pnpm build:scripts

- name: Build Docs
run: pnpm build:docs

- name: Build
run: pnpm build
6 changes: 3 additions & 3 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"author": "Maciej Piotr (aXenDev) Balcerzak",
"license": "GPL-3.0 license",
"scripts": {
"dev": "next dev --port 3030",
"build": "next build",
"start": "next start --port 3030"
"dev:docs": "next dev --port 3030",
"build:docs": "next build",
"start:docs": "next start --port 3030"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.0.6",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"build:scripts": "turbo build:scripts && pnpm i",
"build": "cross-env TURBO_TELEMETRY_DISABLED=1 turbo build",
"dev": "pnpm build:scripts && turbo dev",
"dev:docs": "cd apps/docs && pnpm dev:docs",
"email:dev": "cd apps/backend && pnpm email:dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
Expand Down

0 comments on commit a41e705

Please sign in to comment.