@syncat-dev/cli 0.0.0 → 0.1.0

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 (3) hide show
  1. package/README.md +1 -1
  2. package/dist/cli.js +1 -1
  3. package/package.json +10 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # syncat
2
2
 
3
- For installation, configuration, commands, and usage details, see the [repository README](../../README.md).
3
+ For installation, configuration, commands, and usage details, see the [repository README](https://github.com/bingtsingw/syncat-dev#readme).
4
4
 
5
5
  ## License
6
6
 
package/dist/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { a as loadSyncatConfig, n as buildSyncPlan, r as createUnifiedDiff, t as applySyncPlan } from "./dist-Bn-gPTzR.js";
3
3
  import { cac } from "cac";
4
4
  //#region package.json
5
- var version = "0.0.0";
5
+ var version = "0.1.0";
6
6
  //#endregion
7
7
  //#region src/commands.ts
8
8
  async function runCheck(options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncat-dev/cli",
3
- "version": "0.0.0",
3
+ "version": "0.1.0",
4
4
  "description": "Synchronize selected files from a source directory to a target directory with configurable strategies.",
5
5
  "keywords": [
6
6
  "file-copy",
@@ -8,7 +8,16 @@
8
8
  "strategy",
9
9
  "synchronization"
10
10
  ],
11
+ "homepage": "https://github.com/bingtsingw/syncat-dev#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/bingtsingw/syncat-dev/issues"
14
+ },
11
15
  "license": "MIT",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/bingtsingw/syncat-dev",
19
+ "directory": "packages/cli"
20
+ },
12
21
  "bin": {
13
22
  "syncat": "./dist/cli.js"
14
23
  },