shared-things-daemon 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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -547,7 +547,7 @@ import { spawn } from "child_process";
547
547
  var pkg = JSON.parse(fs5.readFileSync(new URL("../package.json", import.meta.url), "utf-8"));
548
548
  updateNotifier({ pkg }).notify();
549
549
  var program = new Command();
550
- program.name("shared-things").description("Sync a Things 3 project between multiple users").version("0.1.0");
550
+ program.name("shared-things").description("Sync a Things 3 project between multiple users").version(pkg.version);
551
551
  program.command("init").description("Setup wizard").action(async () => {
552
552
  console.log("\n\u{1F504} shared-things Setup\n");
553
553
  if (configExists()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-things-daemon",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Sync Things 3 projects between multiple macOS users",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",