@coze-arch/cli 0.0.24 → 0.0.26
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/lib/__templates__/expo/pnpm-lock.yaml +7 -7
- package/lib/__templates__/nextjs/eslint.config.mjs +1 -0
- package/lib/__templates__/nuxt-vue/eslint.config.mjs +33 -0
- package/lib/__templates__/nuxt-vue/package.json +1 -0
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +1015 -11
- package/lib/__templates__/pi-agent/pnpm-lock.yaml +1 -1
- package/lib/__templates__/taro/src/components/ui/slider.tsx +11 -10
- package/lib/__templates__/taro/src/components/ui/tabs.tsx +3 -4
- package/lib/__templates__/taro/src/lib/measure.ts +1 -1
- package/lib/__templates__/vite/eslint.config.mjs +17 -0
- package/lib/__templates__/vite/package.json +1 -0
- package/lib/__templates__/vite/pnpm-lock.yaml +1007 -0
- package/lib/cli.js +3 -2
- package/package.json +1 -1
package/lib/cli.js
CHANGED
|
@@ -2107,7 +2107,7 @@ const EventBuilder = {
|
|
|
2107
2107
|
};
|
|
2108
2108
|
|
|
2109
2109
|
var name = "@coze-arch/cli";
|
|
2110
|
-
var version = "0.0.
|
|
2110
|
+
var version = "0.0.26";
|
|
2111
2111
|
var description = "coze coding devtools cli";
|
|
2112
2112
|
var license = "MIT";
|
|
2113
2113
|
var author = "fanwenjie.fe@bytedance.com";
|
|
@@ -9307,10 +9307,11 @@ const mergeGitignoreContent = (
|
|
|
9307
9307
|
|
|
9308
9308
|
for (const line of newLines) {
|
|
9309
9309
|
const trimmed = line.trim();
|
|
9310
|
-
//
|
|
9310
|
+
// 跳过空行和已存在的条目(同时对新内容内部去重)
|
|
9311
9311
|
if (trimmed.length === 0 || existingLines.has(trimmed)) {
|
|
9312
9312
|
continue;
|
|
9313
9313
|
}
|
|
9314
|
+
existingLines.add(trimmed);
|
|
9314
9315
|
linesToAppend.push(line);
|
|
9315
9316
|
}
|
|
9316
9317
|
|