mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-12 05:31:41 +00:00
update
This commit is contained in:
28
node_modules/browser-sync/dist/tunnel.js
generated
vendored
Normal file
28
node_modules/browser-sync/dist/tunnel.js
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
"use strict";
|
||||
var _ = require("./lodash.custom");
|
||||
var utils = require("util");
|
||||
/**
|
||||
* @param {BrowserSync} bs
|
||||
* @param {Function} cb
|
||||
*/
|
||||
module.exports = function (bs, cb) {
|
||||
var opts = {};
|
||||
var options = bs.options;
|
||||
var port = options.get("port");
|
||||
if (_.isString(options.get("tunnel"))) {
|
||||
opts.subdomain = options.get("tunnel");
|
||||
}
|
||||
bs.debug("Requesting a tunnel connection on port: {magenta:%s}", port);
|
||||
bs.debug("Requesting a tunnel connection with options: {magenta:%s}", utils.inspect(opts));
|
||||
require("localtunnel")(port, opts, function (err, tunnel) {
|
||||
if (err) {
|
||||
return cb(err);
|
||||
}
|
||||
tunnel.on("error", function (err) {
|
||||
bs.logger.info("Localtunnel issue: " + err.message);
|
||||
bs.logger.info("Oops! The localtunnel appears to have disconnected. Reconnecting...");
|
||||
});
|
||||
return cb(null, tunnel);
|
||||
});
|
||||
};
|
||||
//# sourceMappingURL=tunnel.js.map
|
Reference in New Issue
Block a user