Skip to content

Commit c5a8ada

Browse files
committed
refactor(satellite): simplify npm install command by removing --omit=dev
1 parent 03b7704 commit c5a8ada

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/satellite/src/process/github-deployment.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,10 @@ export class GitHubDeploymentHandler {
264264
this.logger.debug({
265265
operation: 'npm_install_start',
266266
temp_dir: tempDir
267-
}, 'Installing dependencies with npm install --omit=dev');
267+
}, 'Installing dependencies with npm install');
268268

269269
return new Promise((resolve, reject) => {
270-
const npmInstall = spawn('npm', ['install', '--omit=dev'], {
270+
const npmInstall = spawn('npm', ['install'], {
271271
cwd: tempDir,
272272
stdio: 'pipe'
273273
});

0 commit comments

Comments
 (0)