Skip to content

Commit

Permalink
Merge pull request #1128 from xzyfer/feat/node-gyp
Browse files Browse the repository at this point in the history
Replace pangyp with node-gyp
  • Loading branch information
xzyfer committed Sep 9, 2015
2 parents 052c0c4 + 35aa6dd commit cfd7dd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cfd7dd2

Please sign in to comment.