securevibe 0.1.2 → 0.1.3
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/usage.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/usage.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
import { promises as fs } from "node:fs";
|
|
9
9
|
import os from "node:os";
|
|
10
10
|
import path from "node:path";
|
|
11
|
-
export const DAILY_LIMIT =
|
|
11
|
+
export const DAILY_LIMIT = 200;
|
|
12
12
|
export function usageFilePath() {
|
|
13
13
|
return path.join(os.homedir(), ".securevibe", "usage.json");
|
|
14
14
|
}
|
package/dist/version.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
// Single source of truth for the CLI's own version, so it can't drift from
|
|
3
3
|
// what commander reports and what the update-check compares against.
|
|
4
4
|
// Kept in sync with the "version" field in package.json by hand at release time.
|
|
5
|
-
export const VERSION = "0.1.
|
|
5
|
+
export const VERSION = "0.1.3";
|
package/package.json
CHANGED