@panda-agent/panda-cli 0.1.19 → 0.1.20
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/README.md +1 -1
- package/bin/pandacli.mjs +1 -1
- package/dist/panda-cli-ink.bundle.mjs +237 -225
- package/package.json +11 -3
- package/vendor/panda-ink/dist/index.js +2921 -2184
- package/vendor/panda-ink/package.json +1 -1
package/README.md
CHANGED
package/bin/pandacli.mjs
CHANGED
|
@@ -15,7 +15,7 @@ const bundle = join(pkgRoot, 'dist', 'panda-cli-ink.bundle.mjs');
|
|
|
15
15
|
|
|
16
16
|
if (!existsSync(bundle)) {
|
|
17
17
|
console.error(
|
|
18
|
-
'[pandacli] 缺少 dist/panda-cli-ink.bundle.mjs
|
|
18
|
+
'[pandacli] 缺少 dist/panda-cli-ink.bundle.mjs。请在 panda-cli 目录执行: npm run vendor:panda-ink && npm run build,或重新安装/打包容器。',
|
|
19
19
|
);
|
|
20
20
|
process.exit(1);
|
|
21
21
|
}
|