Initial commit: TenderPilot MVP

This commit is contained in:
Peter Foster
2026-02-14 07:43:48 +00:00
commit 61593ea94e
1534 changed files with 202152 additions and 0 deletions

20
node_modules/@mapbox/node-pre-gyp/lib/rebuild.js generated vendored Executable file
View File

@@ -0,0 +1,20 @@
'use strict';
module.exports = exports = rebuild;
exports.usage = 'Runs "clean" and "build" at once';
const napi = require('./util/napi.js');
function rebuild(gyp, argv, callback) {
const package_json = gyp.package_json;
let commands = [
{ name: 'clean', args: [] },
{ name: 'build', args: ['rebuild'] }
];
commands = napi.expand_commands(package_json, gyp.opts, commands);
for (let i = commands.length; i !== 0; i--) {
gyp.todo.unshift(commands[i - 1]);
}
process.nextTick(callback);
}