Skip to content

Commit

Permalink
fix warning in client app build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ronny committed Oct 27, 2024
1 parent cc1bcad commit 5270d4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/electron/scripts/build-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ const manifest = {
};

await fs.writeFile(targetFile, JSON.stringify(manifest, null, 4));
await run('npm install --only=production', dirBuild);
await run('npm install --omit=dev', dirBuild);
2 changes: 1 addition & 1 deletion app/nw/scripts/build-app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ const manifest = {
};

await fs.writeFile(targetFile, JSON.stringify(manifest, null, 4));
await run('npm install --only=production', dirBuild);
await run('npm install --omit=dev', dirBuild);

0 comments on commit 5270d4e

Please sign in to comment.