@lmy54321/design-system 1.3.15 โ 1.3.17
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 +24 -10
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.17";
|
|
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
import { execSync } from 'child_process';
|
|
3
|
+
import { execSync, spawn } from 'child_process';
|
|
4
4
|
import { existsSync, mkdirSync, copyFileSync, cpSync, readdirSync, rmSync } from 'fs';
|
|
5
5
|
import { resolve, dirname } from 'path';
|
|
6
6
|
import { fileURLToPath } from 'url';
|
|
@@ -182,16 +182,30 @@ try {
|
|
|
182
182
|
// ============================================================
|
|
183
183
|
|
|
184
184
|
console.log('๐ ๆญฅ้ชค 5/5: ๅฏๅจๅผๅๆๅกๅจ...\n');
|
|
185
|
+
console.log('โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ');
|
|
186
|
+
console.log('โจ ้กน็ฎๅๅงๅๅฎๆ๏ผ');
|
|
187
|
+
console.log('โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ\n');
|
|
188
|
+
console.log('๐ ๅฏๅจๅผๅๆๅกๅจไธญ...\n');
|
|
189
|
+
|
|
185
190
|
try {
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
191
|
+
// ไฝฟ็จ spawn ่้ execSync๏ผ้ฟๅ
้ปๅก๏ผๅๆถไฟๆๅฎๆถ่พๅบ
|
|
192
|
+
const devServer = spawn('npm', ['run', 'dev'], {
|
|
193
|
+
cwd,
|
|
194
|
+
stdio: 'inherit',
|
|
195
|
+
shell: true
|
|
196
|
+
});
|
|
197
|
+
|
|
198
|
+
// ็ๅฌ่ฟ็จไบไปถ
|
|
199
|
+
devServer.on('error', (error) => {
|
|
200
|
+
console.error('โ ๅฏๅจๅผๅๆๅกๅจๅคฑ่ดฅ:', error.message);
|
|
201
|
+
process.exit(1);
|
|
202
|
+
});
|
|
203
|
+
|
|
204
|
+
devServer.on('exit', (code) => {
|
|
205
|
+
if (code !== 0) {
|
|
206
|
+
console.error(`โ ๅผๅๆๅกๅจๅผๅธธ้ๅบ (code ${code})`);
|
|
207
|
+
process.exit(code);
|
|
208
|
+
}
|
|
195
209
|
});
|
|
196
210
|
} catch (error) {
|
|
197
211
|
console.error('โ ๅฏๅจๅผๅๆๅกๅจๅคฑ่ดฅ:', error.message);
|