ali-skills 0.2.1-beta.1 → 0.3.0
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/bin/cli.mjs +1 -1
- package/package.json +1 -1
package/bin/cli.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { pathToFileURL } from 'url';
|
|
|
7
7
|
|
|
8
8
|
const REGISTRY = 'https://registry.anpm.alibaba-inc.com';
|
|
9
9
|
const PKG = '@ali/cli-skills';
|
|
10
|
-
const CACHE_DIR = join(homedir(), '.ali-skills');
|
|
10
|
+
const CACHE_DIR = join(homedir(), '.ali-skills', 'cli-skills');
|
|
11
11
|
const PKG_DIR = join(CACHE_DIR, 'node_modules', PKG);
|
|
12
12
|
|
|
13
13
|
/** 读取缓存中已安装的版本号 */
|