@pentoshi/clai 0.10.0 → 0.10.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.
- package/dist/commands/update.js +1 -1
- package/package.json +1 -1
package/dist/commands/update.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import chalk from "chalk";
|
|
2
2
|
import { getConfig, updateConfig } from "../store/config.js";
|
|
3
3
|
const REPO = "pentoshi007/clai";
|
|
4
|
-
const CURRENT_VERSION = "0.10.
|
|
4
|
+
const CURRENT_VERSION = "0.10.1";
|
|
5
5
|
const CHECK_INTERVAL_MS = 4 * 60 * 60 * 1000; // 4 hours
|
|
6
6
|
function parseVersion(v) {
|
|
7
7
|
return v.replace(/^v/, "").split(".").map(Number);
|
package/package.json
CHANGED