Skip to content

Commit

Permalink
fix: remove confusing version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasgloning committed Aug 8, 2023
1 parent 8d92530 commit f6314df
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bin/peerjs.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env node

import path from "node:path";
import { version } from "../package.json";
import fs from "node:fs";
const optimistUsageLength = 98;
import yargs from "yargs";
Expand Down Expand Up @@ -121,11 +120,10 @@ const server = PeerServer(opts, (server) => {
const { address: host, port } = server.address() as AddressInfo;

console.log(
"Started PeerServer on %s, port: %s, path: %s (v. %s)",
"Started PeerServer on %s, port: %s, path: %s",
host,
port,
userPath || "/",
version,
);

const shutdownApp = () => {
Expand Down

0 comments on commit f6314df

Please sign in to comment.