Skip to content

Commit 8ce3a6e

Browse files
committed
update: workspace
1 parent f74f470 commit 8ce3a6e

File tree

3 files changed

+29
-70
lines changed

3 files changed

+29
-70
lines changed

apps/book-server/src/services/BookBuildService/index.mts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,7 @@ export class BookBuildService implements Service {
111111
}
112112
}
113113
private async installDependencies(dest: string) {
114-
const dockerEnv = this.env.get('dockerEnv')
115-
const command = 'pnpm install next'.concat(dockerEnv !== 'development' ? '' : ' --no-lock')
114+
const command = 'pnpm install --offline'
116115
try {
117116
const { stdout, stderr } = await exec(command, { cwd: dest })
118117
if (stderr) {

pnpm-lock.yaml

Lines changed: 26 additions & 67 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
packages:
22
- 'packages/*'
33
- 'apps/*'
4-
- '!apps/book-server/books/*'
4+
- 'apps/book-server/books/*'
5+
- '!apps/book-server/books/base'
56
- 'infrastructure/'

0 commit comments

Comments
 (0)