mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-07 18:56:56 +00:00
Merge pull request #63 from denouche/master
fix: use error loglevel for installing dependencies
This commit is contained in:
commit
13af016fd0
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -4,7 +4,7 @@ const path = require('path');
|
|||
const run = async () => {
|
||||
// Install Dependencies
|
||||
{
|
||||
const {stdout, stderr} = await exec('npm ci --only=prod', {
|
||||
const {stdout, stderr} = await exec('npm --loglevel error ci --only=prod', {
|
||||
cwd: path.resolve(__dirname)
|
||||
});
|
||||
console.log(stdout);
|
||||
|
|
|
|||
Loading…
Reference in a new issue