appshot-cli 0.9.0 → 0.9.1
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 +305 -1
- package/dist/cli.js +6 -1
- package/dist/cli.js.map +1 -1
- package/dist/commands/export.d.ts +3 -0
- package/dist/commands/export.d.ts.map +1 -0
- package/dist/commands/export.js +382 -0
- package/dist/commands/export.js.map +1 -0
- package/dist/commands/order.d.ts +3 -0
- package/dist/commands/order.d.ts.map +1 -0
- package/dist/commands/order.js +321 -0
- package/dist/commands/order.js.map +1 -0
- package/dist/services/doctor.js +1 -1
- package/dist/services/export-validator.d.ts +23 -0
- package/dist/services/export-validator.d.ts.map +1 -0
- package/dist/services/export-validator.js +209 -0
- package/dist/services/export-validator.js.map +1 -0
- package/dist/services/fastlane-config-generator.d.ts +17 -0
- package/dist/services/fastlane-config-generator.d.ts.map +1 -0
- package/dist/services/fastlane-config-generator.js +343 -0
- package/dist/services/fastlane-config-generator.js.map +1 -0
- package/dist/services/fastlane-language-mapper.d.ts +33 -0
- package/dist/services/fastlane-language-mapper.d.ts.map +1 -0
- package/dist/services/fastlane-language-mapper.js +167 -0
- package/dist/services/fastlane-language-mapper.js.map +1 -0
- package/dist/services/screenshot-order.d.ts +41 -0
- package/dist/services/screenshot-order.d.ts.map +1 -0
- package/dist/services/screenshot-order.js +211 -0
- package/dist/services/screenshot-order.js.map +1 -0
- package/dist/services/screenshot-organizer.d.ts +44 -0
- package/dist/services/screenshot-organizer.d.ts.map +1 -0
- package/dist/services/screenshot-organizer.js +234 -0
- package/dist/services/screenshot-organizer.js.map +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,21 @@
|
|
|
10
10
|
[](https://nodejs.org)
|
|
11
11
|
[](https://opensource.org/licenses/MIT)
|
|
12
12
|
|
|
13
|
-
🆕 **Version 0.9.
|
|
13
|
+
🆕 **Version 0.9.1** - **Fastlane Export Integration & Screenshot Ordering**
|
|
14
|
+
- **Export Command**: New `appshot export` command for seamless Fastlane integration
|
|
15
|
+
- **Screenshot Ordering**: New `appshot order` command to control App Store screenshot sequence
|
|
16
|
+
- **Order Flag**: Export with `--order` to add numeric prefixes (01_, 02_, etc.)
|
|
17
|
+
- **Smart Ordering**: Handles existing prefixes, prevents double-prefixing
|
|
18
|
+
- **Auto-Detection**: Automatically detects languages from your screenshots
|
|
19
|
+
- **Language Mapping**: Smart mapping to Fastlane-compatible language codes (en → en-US, etc.)
|
|
20
|
+
- **Device Filtering**: Export specific devices with `--devices iphone,ipad`
|
|
21
|
+
- **Validation**: Pre-export validation with warnings and clear error messages
|
|
22
|
+
- **Configuration Generation**: Auto-generate Deliverfile and Fastfile with `--generate-config`
|
|
23
|
+
- **Flexible Output**: Choose between symlinks (default) or file copying with `--copy`
|
|
24
|
+
- **iPad Pro Support**: Automatic IPAD_PRO_3GEN_129_ prefix for proper Fastlane recognition
|
|
25
|
+
- **Dry Run Mode**: Preview export operations with `--dry-run`
|
|
26
|
+
|
|
27
|
+
**Version 0.9.0** - **Professional Template System & Enhanced Positioning**
|
|
14
28
|
- **Quick Start**: New `appshot quickstart` command for instant setup with templates
|
|
15
29
|
- **Templates**: 8 professional templates (modern, minimal, bold, elegant, showcase, playful, corporate, nerdy)
|
|
16
30
|
- **One Command Setup**: Apply complete visual styles with `appshot template <name>`
|
|
@@ -46,6 +60,7 @@
|
|
|
46
60
|
- [Style System Guide](#style-system-guide)
|
|
47
61
|
- [Localization & Translation](#-localization--translation)
|
|
48
62
|
- [Device Support](#-device-support)
|
|
63
|
+
- [Fastlane Integration](#-fastlane-integration)
|
|
49
64
|
- [Command Reference](#-command-reference)
|
|
50
65
|
- [Configuration Reference](#️-configuration-reference)
|
|
51
66
|
- [Agent & Automation Guide](#-agent--automation-guide)
|
|
@@ -1203,6 +1218,295 @@ appshot validate --strict
|
|
|
1203
1218
|
appshot validate --fix
|
|
1204
1219
|
```
|
|
1205
1220
|
|
|
1221
|
+
## 🚀 Fastlane Integration
|
|
1222
|
+
|
|
1223
|
+
Appshot seamlessly integrates with [Fastlane](https://docs.fastlane.tools/) for uploading screenshots to App Store Connect. The `export` command reorganizes your Appshot-generated screenshots into Fastlane's expected directory structure.
|
|
1224
|
+
|
|
1225
|
+
### Overview
|
|
1226
|
+
|
|
1227
|
+
Appshot and Fastlane work together but remain separate tools:
|
|
1228
|
+
- **Appshot**: Generates beautiful screenshots with frames, gradients, and captions
|
|
1229
|
+
- **Fastlane**: Uploads screenshots to App Store Connect
|
|
1230
|
+
|
|
1231
|
+
### Quick Start
|
|
1232
|
+
|
|
1233
|
+
```bash
|
|
1234
|
+
# 1. Generate screenshots with Appshot
|
|
1235
|
+
appshot build --preset iphone-6-9,ipad-13
|
|
1236
|
+
|
|
1237
|
+
# 2. Export for Fastlane (auto-detects languages)
|
|
1238
|
+
appshot export
|
|
1239
|
+
|
|
1240
|
+
# 3. Upload with Fastlane
|
|
1241
|
+
cd fastlane && fastlane deliver
|
|
1242
|
+
```
|
|
1243
|
+
|
|
1244
|
+
### Export Command
|
|
1245
|
+
|
|
1246
|
+
The `appshot export` command bridges Appshot and Fastlane:
|
|
1247
|
+
|
|
1248
|
+
```bash
|
|
1249
|
+
# Basic export (auto-detects languages, creates symlinks)
|
|
1250
|
+
appshot export
|
|
1251
|
+
|
|
1252
|
+
# Export specific devices only
|
|
1253
|
+
appshot export --devices iphone,ipad
|
|
1254
|
+
|
|
1255
|
+
# Copy files instead of symlinks (for CI/CD)
|
|
1256
|
+
appshot export --copy --clean
|
|
1257
|
+
|
|
1258
|
+
# Generate Fastlane configuration
|
|
1259
|
+
appshot export --generate-config
|
|
1260
|
+
|
|
1261
|
+
# Preview without creating files
|
|
1262
|
+
appshot export --dry-run
|
|
1263
|
+
|
|
1264
|
+
# Custom paths
|
|
1265
|
+
appshot export --source ./my-screenshots --output ./upload
|
|
1266
|
+
```
|
|
1267
|
+
|
|
1268
|
+
### Language Mapping
|
|
1269
|
+
|
|
1270
|
+
Appshot automatically maps language codes to Fastlane format:
|
|
1271
|
+
- `en` → `en-US`
|
|
1272
|
+
- `es` → `es-ES`
|
|
1273
|
+
- `fr` → `fr-FR`
|
|
1274
|
+
- `de` → `de-DE`
|
|
1275
|
+
- `zh` → `zh-Hans`
|
|
1276
|
+
- `pt` → `pt-PT`
|
|
1277
|
+
- [and 20+ more mappings]
|
|
1278
|
+
|
|
1279
|
+
Custom mappings via `.appshot/export-config.json`:
|
|
1280
|
+
```json
|
|
1281
|
+
{
|
|
1282
|
+
"languageMappings": {
|
|
1283
|
+
"en": "en-GB",
|
|
1284
|
+
"custom": "x-special"
|
|
1285
|
+
}
|
|
1286
|
+
}
|
|
1287
|
+
```
|
|
1288
|
+
|
|
1289
|
+
### Directory Structure
|
|
1290
|
+
|
|
1291
|
+
**Appshot Output** (source):
|
|
1292
|
+
```
|
|
1293
|
+
final/
|
|
1294
|
+
├── iphone/
|
|
1295
|
+
│ ├── en/
|
|
1296
|
+
│ │ ├── home.png
|
|
1297
|
+
│ │ └── features.png
|
|
1298
|
+
│ └── es/
|
|
1299
|
+
│ └── home.png
|
|
1300
|
+
└── ipad/
|
|
1301
|
+
└── en/
|
|
1302
|
+
└── home.png
|
|
1303
|
+
```
|
|
1304
|
+
|
|
1305
|
+
**Fastlane Structure** (after export):
|
|
1306
|
+
```
|
|
1307
|
+
fastlane/screenshots/
|
|
1308
|
+
├── en-US/
|
|
1309
|
+
│ ├── iphone/
|
|
1310
|
+
│ │ ├── home.png
|
|
1311
|
+
│ │ └── features.png
|
|
1312
|
+
│ └── ipad/
|
|
1313
|
+
│ └── IPAD_PRO_3GEN_129_home.png # Auto-renamed
|
|
1314
|
+
└── es-ES/
|
|
1315
|
+
└── iphone/
|
|
1316
|
+
└── home.png
|
|
1317
|
+
```
|
|
1318
|
+
|
|
1319
|
+
### Special Handling
|
|
1320
|
+
|
|
1321
|
+
#### iPad Pro Naming
|
|
1322
|
+
iPad Pro 12.9" (3rd gen) screenshots are automatically renamed with the `IPAD_PRO_3GEN_129_` prefix for proper Fastlane recognition.
|
|
1323
|
+
|
|
1324
|
+
#### Symlinks vs Copying
|
|
1325
|
+
- **Default**: Creates symlinks (saves disk space, instant)
|
|
1326
|
+
- **CI/CD**: Use `--copy` for portable archives
|
|
1327
|
+
- **Clean**: Use `--clean` to remove old exports before creating new ones
|
|
1328
|
+
|
|
1329
|
+
### Screenshot Ordering (NEW! v0.9.1)
|
|
1330
|
+
|
|
1331
|
+
> **📌 Important Discovery**: Fastlane uploads screenshots in alphabetical order by filename. Without explicit ordering, your carefully arranged screenshots may appear in the wrong sequence on the App Store!
|
|
1332
|
+
|
|
1333
|
+
#### The Order Problem
|
|
1334
|
+
When exporting screenshots for Fastlane, the alphabetical ordering can disrupt your intended flow:
|
|
1335
|
+
- ❌ Without ordering: `bluesky.png`, `cast.png`, `home.png`, `media.png`, `updates.png`
|
|
1336
|
+
- ✅ With ordering: `01_home.png`, `02_updates.png`, `03_cast.png`, `04_media.png`, `05_bluesky.png`
|
|
1337
|
+
|
|
1338
|
+
#### Managing Screenshot Order
|
|
1339
|
+
|
|
1340
|
+
```bash
|
|
1341
|
+
# Set order interactively for each device
|
|
1342
|
+
appshot order --device iphone
|
|
1343
|
+
appshot order --device ipad
|
|
1344
|
+
appshot order --device watch
|
|
1345
|
+
|
|
1346
|
+
# Export with numeric prefixes
|
|
1347
|
+
appshot export --order --copy --clean
|
|
1348
|
+
|
|
1349
|
+
# View current order
|
|
1350
|
+
appshot order --show
|
|
1351
|
+
```
|
|
1352
|
+
|
|
1353
|
+
The order configuration is saved in `.appshot/screenshot-order.json` and intelligently handles:
|
|
1354
|
+
- Files with existing numeric prefixes (prevents double-prefixing like `01_01_home.png`)
|
|
1355
|
+
- Mixed naming conventions in your source files
|
|
1356
|
+
- New screenshots added after initial ordering
|
|
1357
|
+
|
|
1358
|
+
#### Quick Order Setup
|
|
1359
|
+
|
|
1360
|
+
Create a standard order configuration:
|
|
1361
|
+
```bash
|
|
1362
|
+
cat > .appshot/screenshot-order.json << 'EOF'
|
|
1363
|
+
{
|
|
1364
|
+
"version": "1.0",
|
|
1365
|
+
"orders": {
|
|
1366
|
+
"iphone": ["home.png", "features.png", "search.png", "profile.png", "settings.png"],
|
|
1367
|
+
"ipad": ["home.png", "features.png", "search.png", "profile.png", "settings.png"],
|
|
1368
|
+
"watch": ["home.png", "features.png", "profile.png"]
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
EOF
|
|
1372
|
+
```
|
|
1373
|
+
|
|
1374
|
+
### Fastlane Gotchas & Solutions
|
|
1375
|
+
|
|
1376
|
+
> **🔍 Key Discoveries from Real-World Integration**
|
|
1377
|
+
|
|
1378
|
+
#### 1. Nested Directory Limitations
|
|
1379
|
+
**Problem**: Fastlane's `deliver` command struggles with nested device directories inside language folders.
|
|
1380
|
+
|
|
1381
|
+
**Solution**: Appshot v0.9.1+ automatically flattens the structure during export:
|
|
1382
|
+
```bash
|
|
1383
|
+
# Appshot structure (nested):
|
|
1384
|
+
final/iphone/en/home.png →
|
|
1385
|
+
|
|
1386
|
+
# Fastlane structure (flattened):
|
|
1387
|
+
fastlane/screenshots/en-US/iphone/home.png
|
|
1388
|
+
```
|
|
1389
|
+
|
|
1390
|
+
#### 2. Device-Specific Prefixes
|
|
1391
|
+
**Discovery**: Some devices require specific filename prefixes for Fastlane to recognize them correctly.
|
|
1392
|
+
|
|
1393
|
+
**Handled Automatically**:
|
|
1394
|
+
- iPad Pro 12.9" (3rd gen) → `IPAD_PRO_3GEN_129_` prefix
|
|
1395
|
+
- iPad Pro 11" → `IPAD_PRO_11_` prefix
|
|
1396
|
+
|
|
1397
|
+
#### 3. Upload Staging Approach
|
|
1398
|
+
For complex projects with many screenshots, use the staging approach in your Fastfile:
|
|
1399
|
+
|
|
1400
|
+
```ruby
|
|
1401
|
+
lane :upload_screenshots_staged do
|
|
1402
|
+
# Flattens nested structures for Fastlane compatibility
|
|
1403
|
+
# Handles device prefixes automatically
|
|
1404
|
+
# See full implementation in Fastlane export --generate-config
|
|
1405
|
+
end
|
|
1406
|
+
```
|
|
1407
|
+
|
|
1408
|
+
#### 4. API Key Configuration
|
|
1409
|
+
**Important**: Never commit your `api_key.json` to version control!
|
|
1410
|
+
|
|
1411
|
+
```bash
|
|
1412
|
+
# Use the template
|
|
1413
|
+
cp fastlane/api_key.json.template fastlane/api_key.json
|
|
1414
|
+
# Edit with your credentials
|
|
1415
|
+
# Add to .gitignore (done automatically by export --generate-config)
|
|
1416
|
+
```
|
|
1417
|
+
|
|
1418
|
+
### Complete Workflow Example
|
|
1419
|
+
|
|
1420
|
+
```bash
|
|
1421
|
+
# 1. Initialize Appshot project
|
|
1422
|
+
appshot init
|
|
1423
|
+
|
|
1424
|
+
# 2. Add your raw screenshots
|
|
1425
|
+
# Place them in screenshots/iphone/home.png, etc.
|
|
1426
|
+
|
|
1427
|
+
# 3. Generate styled screenshots
|
|
1428
|
+
appshot build --preset iphone-6-9,ipad-13 --langs en,es,fr
|
|
1429
|
+
|
|
1430
|
+
# 4. Export for Fastlane with config generation
|
|
1431
|
+
appshot export --generate-config
|
|
1432
|
+
|
|
1433
|
+
# 5. Configure Fastlane (one-time setup)
|
|
1434
|
+
cd fastlane
|
|
1435
|
+
# Edit Deliverfile with your App Store Connect credentials
|
|
1436
|
+
# app_identifier "com.example.myapp"
|
|
1437
|
+
# username "your@email.com"
|
|
1438
|
+
|
|
1439
|
+
# 6. Upload to App Store Connect
|
|
1440
|
+
fastlane deliver --skip_metadata --skip_app_version_update
|
|
1441
|
+
|
|
1442
|
+
# 7. For updates, just rebuild and re-export
|
|
1443
|
+
appshot build --preset iphone-6-9,ipad-13
|
|
1444
|
+
appshot export --clean
|
|
1445
|
+
cd fastlane && fastlane deliver
|
|
1446
|
+
```
|
|
1447
|
+
|
|
1448
|
+
### CI/CD Integration
|
|
1449
|
+
|
|
1450
|
+
```yaml
|
|
1451
|
+
# GitHub Actions Example
|
|
1452
|
+
- name: Generate Screenshots
|
|
1453
|
+
run: |
|
|
1454
|
+
npm install -g appshot-cli
|
|
1455
|
+
appshot build --preset iphone-6-9,ipad-13
|
|
1456
|
+
|
|
1457
|
+
- name: Export for Fastlane
|
|
1458
|
+
run: appshot export --copy --clean
|
|
1459
|
+
|
|
1460
|
+
- name: Upload to App Store
|
|
1461
|
+
env:
|
|
1462
|
+
APP_STORE_CONNECT_API_KEY: ${{ secrets.ASC_API_KEY }}
|
|
1463
|
+
run: |
|
|
1464
|
+
cd fastlane
|
|
1465
|
+
fastlane deliver --api_key_path api_key.json
|
|
1466
|
+
```
|
|
1467
|
+
|
|
1468
|
+
### Validation
|
|
1469
|
+
|
|
1470
|
+
The export command includes comprehensive validation:
|
|
1471
|
+
- Checks for valid output directory permissions
|
|
1472
|
+
- Validates language codes against Fastlane's supported set
|
|
1473
|
+
- Warns about missing screenshots for requested devices
|
|
1474
|
+
- Suggests App Store required presets if missing
|
|
1475
|
+
|
|
1476
|
+
```bash
|
|
1477
|
+
# Preview and validate
|
|
1478
|
+
appshot export --dry-run --verbose
|
|
1479
|
+
|
|
1480
|
+
# Check what would be exported
|
|
1481
|
+
appshot export --dry-run --json | jq
|
|
1482
|
+
```
|
|
1483
|
+
|
|
1484
|
+
### Generated Fastlane Files
|
|
1485
|
+
|
|
1486
|
+
With `--generate-config`, Appshot creates:
|
|
1487
|
+
- **Deliverfile**: Screenshot configuration
|
|
1488
|
+
- **Fastfile**: Upload lanes
|
|
1489
|
+
- **README.md**: Instructions
|
|
1490
|
+
- **.gitignore**: Excludes screenshots
|
|
1491
|
+
|
|
1492
|
+
Example generated Deliverfile:
|
|
1493
|
+
```ruby
|
|
1494
|
+
# Generated by Appshot
|
|
1495
|
+
screenshots_path "./screenshots"
|
|
1496
|
+
languages ["en-US", "es-ES", "fr-FR"]
|
|
1497
|
+
skip_binary_upload true
|
|
1498
|
+
skip_metadata true
|
|
1499
|
+
overwrite_screenshots true
|
|
1500
|
+
```
|
|
1501
|
+
|
|
1502
|
+
### Tips
|
|
1503
|
+
|
|
1504
|
+
1. **Language Detection**: Let Appshot auto-detect languages from your screenshots
|
|
1505
|
+
2. **Device Filtering**: Export only what you need with `--devices`
|
|
1506
|
+
3. **Dry Run First**: Always preview with `--dry-run` before actual export
|
|
1507
|
+
4. **Validation**: Run `appshot validate` before export to ensure compliance
|
|
1508
|
+
5. **Incremental Updates**: Use `--clean` to ensure fresh exports
|
|
1509
|
+
|
|
1206
1510
|
## 📝 Command Reference
|
|
1207
1511
|
|
|
1208
1512
|
### `appshot quickstart` (NEW!)
|
package/dist/cli.js
CHANGED
|
@@ -24,6 +24,8 @@ import watchStatusCmd from './commands/watch-status.js';
|
|
|
24
24
|
import templateCmd from './commands/template.js';
|
|
25
25
|
import quickstartCmd from './commands/quickstart.js';
|
|
26
26
|
import presetCmd from './commands/preset.js';
|
|
27
|
+
import exportCmd from './commands/export.js';
|
|
28
|
+
import orderCmd from './commands/order.js';
|
|
27
29
|
const program = new Command();
|
|
28
30
|
const logo = String.raw ` _ _ _
|
|
29
31
|
/ \ _ __ _ __ ___| |__ ___ | |_
|
|
@@ -59,12 +61,13 @@ ${pc.bold('Common Workflows:')}
|
|
|
59
61
|
$ appshot backgrounds set iphone bg.jpg # Set background image
|
|
60
62
|
$ appshot frame ./screenshots --recursive # Batch frame images
|
|
61
63
|
$ appshot build --preset iphone-6-9,ipad-13 # App Store presets
|
|
64
|
+
$ appshot export fastlane # Export for Fastlane upload
|
|
62
65
|
$ appshot localize --langs es,fr,de # Batch translate${platform() === 'darwin' ? `
|
|
63
66
|
$ appshot device capture # Capture from simulator/device (macOS)
|
|
64
67
|
$ appshot watch start --process # Auto-process new screenshots` : ''}
|
|
65
68
|
|
|
66
69
|
${pc.dim('Docs: https://github.com/chrisvanbuskirk/appshot')}`)
|
|
67
|
-
.version('0.9.
|
|
70
|
+
.version('0.9.1')
|
|
68
71
|
.addHelpText('after', `\n${pc.bold('Environment Variables:')}
|
|
69
72
|
OPENAI_API_KEY API key for translation features
|
|
70
73
|
APPSHOT_DISABLE_FONT_SCAN Skip system font detection (CI optimization)
|
|
@@ -87,6 +90,8 @@ program.addCommand(fontsCmd());
|
|
|
87
90
|
program.addCommand(localizeCmd());
|
|
88
91
|
program.addCommand(buildCmd());
|
|
89
92
|
program.addCommand(frameCmd());
|
|
93
|
+
program.addCommand(orderCmd());
|
|
94
|
+
program.addCommand(exportCmd());
|
|
90
95
|
// Add device and watch commands only on macOS
|
|
91
96
|
if (platform() === 'darwin') {
|
|
92
97
|
program.addCommand(deviceCmd());
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC;AAC9B,OAAO,EAAE,MAAM,YAAY,CAAC;AAC5B,OAAO,OAAO,MAAM,oBAAoB,CAAC;AACzC,OAAO,UAAU,MAAM,uBAAuB,CAAC;AAC/C,OAAO,WAAW,MAAM,wBAAwB,CAAC;AACjD,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,SAAS,MAAM,sBAAsB,CAAC;AAC7C,OAAO,UAAU,MAAM,uBAAuB,CAAC;AAC/C,OAAO,WAAW,MAAM,wBAAwB,CAAC;AACjD,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,YAAY,MAAM,yBAAyB,CAAC;AACnD,OAAO,cAAc,MAAM,2BAA2B,CAAC;AACvD,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,UAAU,MAAM,uBAAuB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,SAAS,MAAM,sBAAsB,CAAC;AAC7C,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,UAAU,MAAM,uBAAuB,CAAC;AAC/C,OAAO,cAAc,MAAM,4BAA4B,CAAC;AACxD,OAAO,WAAW,MAAM,wBAAwB,CAAC;AACjD,OAAO,aAAa,MAAM,0BAA0B,CAAC;AACrD,OAAO,SAAS,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"export.d.ts","sourceRoot":"","sources":["../../src/commands/export.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA0BpC,MAAM,CAAC,OAAO,UAAU,SAAS,YAiZhC"}
|