node-gyp/lib/copy.js
2012-02-06 11:55:53 -08:00

16 lines
322 B
JavaScript

module.exports = exports = copy
exports.usage = 'Copies a compiled bindings to an appropriate dir for runtime detection'
/**
* Module dependencies.
*/
var fs = require('fs')
, path = require('path')
, mkdir = require('mkdirp')
function copy (gyp, argv, callback) {
callback(new Error('TODO: implement me'))
}