Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/vanilla-vite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ FROM base AS build
WORKDIR /app

COPY package.json pnpm-lock.yaml pnpm-workspace.yaml .npmrc tsconfig.json ./
COPY packages/core packages/core
COPY packages/shared packages/shared
COPY libs/core libs/core
COPY libs/shared libs/shared
COPY apps/vanilla-vite apps/vanilla-vite

RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
"packages": ["packages/*", "apps/*"],
"packages": ["apps/*", "libs/*"],
"npmClient": "pnpm",
"version": "0.2.0",
"conventionalCommits": true,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"dev": "pnpm -r --parallel run dev",
"build": "pnpm -r run build",
"docker:build": "pnpm -r --stream run docker:build",
"clean": "rimraf --glob packages/*/dist apps/*/dist temp .eslintcache",
"clean:all": "pnpm clean && rimraf --glob node_modules packages/*/node_modules apps/*/node_modules",
"clean": "rimraf --glob libs/*/dist apps/*/dist temp .eslintcache",
"clean:all": "pnpm clean && rimraf --glob node_modules libs/*/node_modules apps/*/node_modules",
"format": "prettier . --write --ignore-unknown",
"lint": "eslint --cache . && prettier -c .",
"test": "pnpm -r --parallel run test",
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
packages:
- "packages/**"
- "apps/**"
- "libs/**"
Loading