]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/node-gyp/lib/rebuild.js
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / node-gyp / lib / rebuild.js
1
2 module.exports = exports = rebuild
3
4 exports.usage = 'Runs "clean", "configure" and "build" all at once'
5
6 function rebuild (gyp, argv, callback) {
7
8   gyp.todo.push(
9       { name: 'clean', args: [] }
10     , { name: 'configure', args: argv }
11     , { name: 'build', args: [] }
12   )
13   process.nextTick(callback)
14 }