Skip to content

Commit f6314df

Browse files
committed
fix: remove confusing version number
1 parent 8d92530 commit f6314df

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

bin/peerjs.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env node
22

33
import path from "node:path";
4-
import { version } from "../package.json";
54
import fs from "node:fs";
65
const optimistUsageLength = 98;
76
import yargs from "yargs";
@@ -121,11 +120,10 @@ const server = PeerServer(opts, (server) => {
121120
const { address: host, port } = server.address() as AddressInfo;
122121

123122
console.log(
124-
"Started PeerServer on %s, port: %s, path: %s (v. %s)",
123+
"Started PeerServer on %s, port: %s, path: %s",
125124
host,
126125
port,
127126
userPath || "/",
128-
version,
129127
);
130128

131129
const shutdownApp = () => {

0 commit comments

Comments
 (0)