Skip to content

Commit ed6729b

Browse files
committed
fix: use error loglevel for installing dependencies
Because warnings during dependencies installation are not meants to make crash the release Closes #57
1 parent a893a77 commit ed6729b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const path = require('path');
44
const run = async () => {
55
// Install Dependencies
66
{
7-
const {stdout, stderr} = await exec('npm ci --only=prod', {
7+
const {stdout, stderr} = await exec('npm --loglevel error ci --only=prod', {
88
cwd: path.resolve(__dirname)
99
});
1010
console.log(stdout);

0 commit comments

Comments
 (0)