@lmy54321/design-system 1.3.17 → 1.3.18
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/scripts/init.mjs +14 -26
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -3740,7 +3740,7 @@ function GridSystemDocs() {
|
|
|
3740
3740
|
}
|
|
3741
3741
|
|
|
3742
3742
|
// index.ts
|
|
3743
|
-
var VERSION = "1.3.
|
|
3743
|
+
var VERSION = "1.3.18";
|
|
3744
3744
|
|
|
3745
3745
|
export { ActionSheet, BottomActionButtons, BottomNavigationBar, BottomSheet, BottomSheetOption, BottomSheetShareItem, BottomToolbar, Btn, BubbleTip, CardDemo, DRAWER_STATES, Dialog, DraggablePanel, EmptyState, GridSystemDocs, ICON_GROUPS, ICON_NAMES, IcExpand, IcPlan, IconFont, IconGallery, ImageWithFallback, Loading, NewsItem, NotificationBar, POIListItem, PoiItem, Push, SearchBox, SegmentedControl, StatGrid, Switch, Tag, TencentMap, Toast, TopToolbar, TypographyDocs, VERSION, cn, hasFilledVariant };
|
|
3746
3746
|
//# sourceMappingURL=index.mjs.map
|
package/package.json
CHANGED
package/scripts/init.mjs
CHANGED
|
@@ -178,36 +178,24 @@ try {
|
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
// ============================================================
|
|
181
|
-
// 步骤 5:
|
|
181
|
+
// 步骤 5: 完成总结
|
|
182
182
|
// ============================================================
|
|
183
183
|
|
|
184
|
-
console.log('🎉 步骤 5/5:
|
|
184
|
+
console.log('🎉 步骤 5/5: 完成\n');
|
|
185
185
|
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
|
|
186
186
|
console.log('✨ 项目初始化完成!');
|
|
187
187
|
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n');
|
|
188
|
-
console.log('🚀 启动开发服务器中...\n');
|
|
189
188
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
shell: true
|
|
196
|
-
});
|
|
189
|
+
console.log('📁 项目目录: ' + cwd);
|
|
190
|
+
console.log('✅ 已创建 Vite + React + TypeScript 项目');
|
|
191
|
+
console.log('✅ 已安装所有依赖(包括 @lmy54321/design-system)');
|
|
192
|
+
console.log('✅ 已复制设计系统模板文件');
|
|
193
|
+
console.log('✅ 已同步规则文件到 .codebuddy/rules\n');
|
|
197
194
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
if (code !== 0) {
|
|
206
|
-
console.error(`❌ 开发服务器异常退出 (code ${code})`);
|
|
207
|
-
process.exit(code);
|
|
208
|
-
}
|
|
209
|
-
});
|
|
210
|
-
} catch (error) {
|
|
211
|
-
console.error('❌ 启动开发服务器失败:', error.message);
|
|
212
|
-
process.exit(1);
|
|
213
|
-
}
|
|
195
|
+
console.log('接下来:');
|
|
196
|
+
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
|
|
197
|
+
console.log('1️⃣ 运行开发服务器:');
|
|
198
|
+
console.log(' npm run dev\n');
|
|
199
|
+
console.log('2️⃣ 打开浏览器访问 http://localhost:5173\n');
|
|
200
|
+
console.log('3️⃣ 开始开发!\n');
|
|
201
|
+
console.log('💡 所有组件已从 @lmy54321/design-system 导入\\n');
|