node-sass: 3.9.3 install throwing with gauge/render-template error

We are installing gulp-sass, which installs node-sass. I noticed that version 3.9.0 was messed up, but it looks like 3.9.3 should have fixed these installation issues. However, we’re still having issues installing 3.9.3.

Here’s our issue:

RAN: '/usr/local/bin/npm install'
  STDOUT:
> node-sass@3.9.3 install /srv/www/project/node_modules/node-sass
> node scripts/install.js
Start downloading binary at https://github.com/sass/node-sass/releases/download/v3.9.3/linux-x64-11_binding.node
  STDERR:
npm WARN prefer global node-gyp@3.4.0 should be installed with -g
 [?25l
 [K [?25h
/srv/www/project/node_modules/gauge/render-template.js:67
          throw new error.MissingTemplateValue(cloned, values)
                ^
Error: Missing template value "progressbar"
    at cloneAndObjectify (/srv/www/project/node_modules/gauge/render-template.js:67:17)
    at Array.map (native)
    at prepareItems (/srv/www/project/node_modules/gauge/render-template.js:83:25)
    at module.exports (/srv/www/project/node_modules/gauge/render-template.js:16:15)
    at Object.Plumbing.show (/srv/www/project/node_modules/gauge/plumbing.js:45:10)
    at Object.Gauge._doRedraw (/srv/www/project/node_modules/gauge/index.js:219:40)
    at Timer.<anonymous> (/srv/www/project/node_modules/gauge/index.js:15:19)
    at Timer.wrapper (timers.js:252:14)
npm ERR! Linux 3.13.0-92-generic
npm ERR! argv "node" "/usr/local/bin/npm" "install"
npm ERR! node v0.10.25
npm ERR! npm  v3.10.6
npm ERR! code ELIFECYCLE
npm ERR! node-sass@3.9.3 install: `node scripts/install.js`
npm ERR! Exit status 8
npm ERR!
npm ERR! Failed at the node-sass@3.9.3 install script 'node scripts/install.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the node-sass package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node scripts/install.js
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs node-sass
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls node-sass
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR!     /srv/www/project/npm-debug.log

About this issue

  • Original URL
  • State: closed
  • Created 8 years ago
  • Comments: 25 (17 by maintainers)

Commits related to this issue

Most upvoted comments

@ian see #1805. Please try 3.12.5.

Gavin Joyce is my personal hero today. Here’s the workaround:

npm set progress=false

@Chrislong thanks a lot! that would confirm my theory about the impact of the progressbar on some pseudo terminals.