We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aab118e commit 5f3ed92Copy full SHA for 5f3ed92
2 files changed
lib/build.js
@@ -7,8 +7,6 @@ const log = require('npmlog')
7
const which = require('which')
8
const win = process.platform === 'win32'
9
10
-exports.usage = 'Invokes `' + (win ? 'msbuild' : 'make') + '` and builds the module'
11
-
12
function build (gyp, argv, callback) {
13
var platformMake = 'make'
14
if (process.platform === 'aix') {
@@ -203,3 +201,4 @@ function build (gyp, argv, callback) {
203
201
}
204
202
205
module.exports = build
+module.exports.usage = 'Invokes `' + (win ? 'msbuild' : 'make') + '` and builds the module'
lib/list.js
@@ -24,4 +24,4 @@ function list (gyp, args, callback) {
24
25
26
module.exports = list
27
-exports.usage = 'Prints a listing of the currently installed node development files'
+module.exports.usage = 'Prints a listing of the currently installed node development files'
0 commit comments