Skip to content

Commit

Permalink
fix build commands to include dependent packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sitek94 committed Nov 26, 2023
1 parent 8506e31 commit c2d654e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 18 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,6 @@ jobs:
- name: 📥 Install Dependencies
run: pnpm install

- name: 📦 Build libs
run: pnpm build:ui

- name: 🏗️ Build apps
run: pnpm build:apps

Expand Down Expand Up @@ -234,9 +231,6 @@ jobs:
- name: 📥 Install Dependencies
run: pnpm install

- name: 📦 Build libs
run: pnpm build:ui

- name: 🏗️ Build
run: pnpm build:docs

Expand Down
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@

## Deployments

<!-- table -->

| App | URL |
| ---------------- | ------------------------------------- |
| NestJS | https://pnpm-monorepo-nestjs.fly.dev/ |
| Remix | https://pnpm-monorepo-remix.fly.dev/ |
| Docs (Storybook) | fdasfsa |
| App | URL |
| ---------------- | --------------------------------------------------------- |
| NestJS | https://pnpm-monorepo-nestjs.fly.dev/ |
| Remix | https://pnpm-monorepo-remix.fly.dev/ |
| Docs (Storybook) | https://6562c63f0bbf6184dd3b3f1e-aulbjawzef.chromatic.com |

## References

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"name": "pnpm-monorepo",
"private": true,
"scripts": {
"build:apps": "pnpm -F './apps/**' build",
"build:docs": "pnpm -F docs build",
"build:nestjs": "pnpm -F nestjs build",
"build:remix": "pnpm -F remix build",
"build:apps": "pnpm --filter {'./apps/*'}... run build",
"build:docs": "pnpm -F docs... build",
"build:nestjs": "pnpm -F nestjs... build",
"build:remix": "pnpm -F remix... build",
"build:ui": "pnpm -F ui build",
"build": "pnpm run -r build",
"deploy:nestjs": "fly deploy --config ./apps/nestjs/fly.toml --dockerfile ./apps/nestjs/Dockerfile",
"deploy:remix": "fly deploy --config ./apps/remix/fly.toml --dockerfile ./apps/remix/Dockerfile",
"develop:docs": "pnpm -F docs develop",
"develop:nestjs": "pnpm -F nestjs develop",
"develop:remix": "pnpm -F remix develop",
"develop:remix": "pnpm -F remix... develop",
"develop:ui": "pnpm -F ui develop",
"develop": "pnpm -r develop",
"format": "prettier --write .",
Expand Down

0 comments on commit c2d654e

Please sign in to comment.