@naarang/ccc 3.3.0-beta.15 → 3.3.0-beta.16
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/index.js +100 -100
- package/dist/scripts/debug-pi-models.ts +1 -2
- package/package.json +1 -1
- package/scripts/debug-pi-models.ts +1 -2
|
@@ -23,10 +23,9 @@ function header(label: string): void {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
async function main(): Promise<void> {
|
|
26
|
-
header('1.
|
|
26
|
+
header('1. Pi SDK source');
|
|
27
27
|
const resolved = await loadPiSdk();
|
|
28
28
|
console.log('install path:', resolved.installPath);
|
|
29
|
-
console.log('version :', resolved.version);
|
|
30
29
|
|
|
31
30
|
header('2. What does ~/.pi/agent/auth.json look like?');
|
|
32
31
|
const authPath = path.join(os.homedir(), '.pi', 'agent', 'auth.json');
|
package/package.json
CHANGED
|
@@ -23,10 +23,9 @@ function header(label: string): void {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
async function main(): Promise<void> {
|
|
26
|
-
header('1.
|
|
26
|
+
header('1. Pi SDK source');
|
|
27
27
|
const resolved = await loadPiSdk();
|
|
28
28
|
console.log('install path:', resolved.installPath);
|
|
29
|
-
console.log('version :', resolved.version);
|
|
30
29
|
|
|
31
30
|
header('2. What does ~/.pi/agent/auth.json look like?');
|
|
32
31
|
const authPath = path.join(os.homedir(), '.pi', 'agent', 'auth.json');
|