mirror of
https://github.com/electron/node-gyp.git
synced 2025-09-15 13:43:40 +02:00
20 lines
254 B
JavaScript
Executable file
20 lines
254 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Set the title.
|
|
*/
|
|
|
|
process.title = 'node-gyp'
|
|
|
|
/**
|
|
* Module dependencies.
|
|
*/
|
|
|
|
var nopt = require('nopt')
|
|
, knownOpts = {
|
|
debug: Boolean
|
|
, verbose: Boolean
|
|
}
|
|
, opts = nopt(knownOpts)
|
|
|
|
console.log(opts)
|