@involvex/syncstuff-cli 0.0.9 → 0.0.10
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/cli.js +2 -2
- package/package.json +1 -1
- package/src/utils/network.ts +1 -1
package/dist/cli.js
CHANGED
|
@@ -9655,7 +9655,7 @@ function printHeader() {
|
|
|
9655
9655
|
function printSeparator() {
|
|
9656
9656
|
console.log(source_default.gray("─".repeat(50)));
|
|
9657
9657
|
}
|
|
9658
|
-
var import_table, __dirname = "D:\\repos\\ionic\\syncstuff\\apps\\
|
|
9658
|
+
var import_table, __dirname = "D:\\repos\\ionic\\syncstuff\\apps\\cli\\src\\utils";
|
|
9659
9659
|
var init_ui = __esm(() => {
|
|
9660
9660
|
init_boxen();
|
|
9661
9661
|
init_source();
|
|
@@ -35396,7 +35396,7 @@ var init_network = __esm(() => {
|
|
|
35396
35396
|
init_config();
|
|
35397
35397
|
import_bonjour_service = __toESM(require_dist(), 1);
|
|
35398
35398
|
require2 = createRequire2(import.meta.url);
|
|
35399
|
-
packageJson = require2("
|
|
35399
|
+
packageJson = require2("../../package.json");
|
|
35400
35400
|
networkScanner = new NetworkScanner;
|
|
35401
35401
|
process.on("exit", () => networkScanner.destroy());
|
|
35402
35402
|
process.on("SIGINT", () => process.exit());
|
package/package.json
CHANGED
package/src/utils/network.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { readConfig, writeConfig } from "./config.js";
|
|
|
13
13
|
export type { LocalDevice };
|
|
14
14
|
|
|
15
15
|
const require = createRequire(import.meta.url);
|
|
16
|
-
const packageJson = require("
|
|
16
|
+
const packageJson = require("../../package.json");
|
|
17
17
|
/**
|
|
18
18
|
* Network scanner for discovering SyncStuff devices on the local network using mDNS.
|
|
19
19
|
*/
|