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

Commit cfd7dd2

Browse files
committed
Merge pull request #1128 from xzyfer/feat/node-gyp
Replace pangyp with node-gyp
2 parents 052c0c4 + 35aa6dd commit cfd7dd2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"mkdirp": "^0.5.1",
5959
"nan": "^2.0.8",
6060
"npmconf": "^2.1.2",
61-
"pangyp": "^2.3.0",
61+
"node-gyp": "^3.0.1",
6262
"request": "^2.61.0",
6363
"sass-graph": "^2.0.1"
6464
},

scripts/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function build(options) {
130130
process.exit(1);
131131
}
132132

133-
var args = [require.resolve(path.join('pangyp', 'bin', 'node-gyp.js')), 'rebuild', '--verbose'].concat(
133+
var args = [require.resolve(path.join('node-gyp', 'bin', 'node-gyp.js')), 'rebuild', '--verbose'].concat(
134134
['libsass_ext', 'libsass_cflags', 'libsass_ldflags', 'libsass_library'].map(function(subject) {
135135
return ['--', subject, '=', process.env[subject.toUpperCase()] || ''].join('');
136136
})).concat(options.args);

0 commit comments

Comments
 (0)