zen-gitsync 2.11.23 → 2.11.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-gitsync",
3
- "version": "2.11.23",
3
+ "version": "2.11.25",
4
4
  "description": "A Git automation platform with interactive commits, scheduled sync, command orchestration, file locking, and a visual GUI.",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -71,6 +71,7 @@
71
71
  },
72
72
  "homepage": "https://github.com/xz333221/zen-gitsync#readme",
73
73
  "dependencies": {
74
+ "acorn": "^8.16.0",
74
75
  "boxen": "^8.0.1",
75
76
  "chalk": "^5.4.1",
76
77
  "cli-table3": "^0.6.5",
package/src/gitCommit.js CHANGED
@@ -9,7 +9,7 @@ import ora from 'ora';
9
9
  import chalk from 'chalk';
10
10
  import boxen from 'boxen';
11
11
  import config from './config.js';
12
- import dateFormat from 'date-fns/format';
12
+ import { format as dateFormat } from 'date-fns/format';
13
13
  import logUpdate from 'log-update';
14
14
  import startUIServer from './ui/server/index.js';
15
15
  import { exec } from 'child_process';