quvur-dev 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +0 -9
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -571,14 +571,6 @@ Examples:
|
|
|
571
571
|
|
|
572
572
|
// src/commands/tcp.ts
|
|
573
573
|
var import_commander3 = require("commander");
|
|
574
|
-
var registerTcpCommand = (program2, config2) => {
|
|
575
|
-
program2.command("tcp").description(config2.description).usage(config2.usage).argument("<port>", "Local TCP port to expose").option("-t <token>", "Override auth token").addHelpText("after", `
|
|
576
|
-
Examples:
|
|
577
|
-
${config2.examples.join("\n ")}`).action((port, options) => {
|
|
578
|
-
logger.success("TCP tunnel starting on port:", port);
|
|
579
|
-
logger.info("Options:", options);
|
|
580
|
-
});
|
|
581
|
-
};
|
|
582
574
|
|
|
583
575
|
// src/commands/auth.ts
|
|
584
576
|
var import_commander4 = require("commander");
|
|
@@ -774,7 +766,6 @@ program.name(config.name).version(config.version).description(config.description
|
|
|
774
766
|
writeErr: (message) => logger.error(message)
|
|
775
767
|
});
|
|
776
768
|
registerHttpCommand(program, config.help.commands.http);
|
|
777
|
-
registerTcpCommand(program, config.help.commands.tcp);
|
|
778
769
|
registerAuthCommand(program, config.help.commands.auth);
|
|
779
770
|
registerLogoutCommand(program, config.help.commands.logout);
|
|
780
771
|
registerConfigCommand(program, config.help.commands.config);
|