@mrclrchtr/supi-insights 1.14.0 → 1.14.2
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.
|
@@ -7,9 +7,10 @@
|
|
|
7
7
|
import * as fs from "node:fs";
|
|
8
8
|
import * as os from "node:os";
|
|
9
9
|
import * as path from "node:path";
|
|
10
|
+
import { CONFIG_DIR_NAME } from "@earendil-works/pi-coding-agent";
|
|
10
11
|
|
|
11
|
-
const GLOBAL_CONFIG_DIR =
|
|
12
|
-
const PROJECT_CONFIG_DIR =
|
|
12
|
+
const GLOBAL_CONFIG_DIR = `${CONFIG_DIR_NAME}/agent/supi`;
|
|
13
|
+
const PROJECT_CONFIG_DIR = `${CONFIG_DIR_NAME}/supi`;
|
|
13
14
|
const CONFIG_FILE = "config.json";
|
|
14
15
|
|
|
15
16
|
function getGlobalConfigPath(homeDir?: string): string {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrclrchtr/supi-insights",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.2",
|
|
4
4
|
"description": "SuPi Insights extension — generate usage reports analyzing your PI sessions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"diff": "^9.0.0",
|
|
27
|
-
"@mrclrchtr/supi-core": "1.14.
|
|
27
|
+
"@mrclrchtr/supi-core": "1.14.2"
|
|
28
28
|
},
|
|
29
29
|
"bundledDependencies": [
|
|
30
30
|
"@mrclrchtr/supi-core"
|