Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/ee5c04e32b1fb4b675e88a654511f7d827c9066600bca9cb38cac0d2c698ce129a48c13ee048f0f065c9af1ed1005bc268ec56191f63ae68303a06c348e10a
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

31 lines
No EOL
1.2 KiB
Text

import net from 'net';
/**
* Proxy the TCP connect method to determine if any network access is made during the build
*
* @param addresses An array to track the addresses that are accessed.
* @returns A function that restores the original connect method.
*/ export function tcpProxy(addresses) {
// net.Socket docs https://nodejs.org/api/net.html#class-netsocket
const originalConnect = net.Socket.prototype.connect;
// Override the connect method
net.Socket.prototype.connect = function(...args) {
// First, check if the first argument is an object and not null
if (typeof args[0] === 'object' && args[0] !== null) {
const options = args[0];
// check if the options has what we need
if ('port' in options && options.port !== undefined && 'host' in options && options.host !== undefined) {
addresses.push({
addr: options.host,
port: options.port.toString()
});
}
}
return originalConnect.apply(this, args);
};
return ()=>{
// Restore the original connect method
net.Socket.prototype.connect = originalConnect;
};
}
//# sourceMappingURL=tcp.js.map