From 34a041389309d5d84b2cd9e8ce65d593a70f4a69 Mon Sep 17 00:00:00 2001 From: xzyfer Date: Tue, 8 Sep 2015 23:23:31 +1000 Subject: [PATCH] Replace pangyp with node-gyp We originally adopted pangyp as a tempory work around for iojs support. This and more has been added to node-gyp and as such pangyp has been deprecated. --- package.json | 2 +- scripts/build.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index dc3ad620b..b0b87e67d 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "mkdirp": "^0.5.1", "nan": "^2.0.8", "npmconf": "^2.1.2", - "pangyp": "^2.3.0", + "node-gyp": "^3.0.1", "request": "^2.61.0", "sass-graph": "^2.0.1" }, diff --git a/scripts/build.js b/scripts/build.js index 4a6d48414..ac62a22cb 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -130,7 +130,7 @@ function build(options) { process.exit(1); } - var args = [require.resolve(path.join('pangyp', 'bin', 'node-gyp.js')), 'rebuild', '--verbose'].concat( + var args = [require.resolve(path.join('node-gyp', 'bin', 'node-gyp.js')), 'rebuild', '--verbose'].concat( ['libsass_ext', 'libsass_cflags', 'libsass_ldflags', 'libsass_library'].map(function(subject) { return ['--', subject, '=', process.env[subject.toUpperCase()] || ''].join(''); })).concat(options.args);