Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Send npmlog to stdout
Browse files Browse the repository at this point in the history
Looks the default of stderr is causing issue for some CI servers.

Fixes #1801
  • Loading branch information
xzyfer committed Nov 14, 2016
1 parent e0aef95 commit cc1933c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ var pkg = require('../package.json'),
log = require('npmlog'),
sass = require('../lib/extensions');

log.stream(process.stdout);

/**
* After build
*
Expand Down
2 changes: 2 additions & 0 deletions scripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ var fs = require('fs'),
log = require('npmlog'),
downloadOptions = require('./util/downloadoptions');

log.stream(process.stdout);

/**
* Download file, if succeeds save, if not delete
*
Expand Down

0 comments on commit cc1933c

Please sign in to comment.