@wipal/agent-team 1.1.2 → 1.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/package.json +1 -1
- package/scripts/postinstall.js +6 -2
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -5,8 +5,12 @@
|
|
|
5
5
|
* Displays setup information after npm install
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
import fs from 'fs';
|
|
9
|
+
import path from 'path';
|
|
10
|
+
import { fileURLToPath } from 'url';
|
|
11
|
+
|
|
12
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
13
|
+
const __dirname = path.dirname(__filename);
|
|
10
14
|
|
|
11
15
|
// Check if current directory has .claude
|
|
12
16
|
const cwd = process.cwd();
|