centy 0.1.0 → 0.1.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/bin/run.js +1 -1
- package/oclif.manifest.json +121 -121
- package/package.json +1 -1
package/bin/run.js
CHANGED
|
@@ -48,7 +48,7 @@ if (isVersion) {
|
|
|
48
48
|
}
|
|
49
49
|
} else if (args.length === 0) {
|
|
50
50
|
// Bare invocation: launch centy-tui
|
|
51
|
-
const { launchTui } = await import('../dist/lib/launch-tui/
|
|
51
|
+
const { launchTui } = await import('../dist/lib/launch-tui/launch-tui.js')
|
|
52
52
|
const result = await launchTui()
|
|
53
53
|
if (!result.success) {
|
|
54
54
|
console.error(result.error)
|
package/oclif.manifest.json
CHANGED
|
@@ -1320,126 +1320,6 @@
|
|
|
1320
1320
|
"autostart.js"
|
|
1321
1321
|
]
|
|
1322
1322
|
},
|
|
1323
|
-
"duplicate:doc": {
|
|
1324
|
-
"aliases": [],
|
|
1325
|
-
"args": {
|
|
1326
|
-
"slug": {
|
|
1327
|
-
"description": "Doc slug",
|
|
1328
|
-
"name": "slug",
|
|
1329
|
-
"required": true
|
|
1330
|
-
}
|
|
1331
|
-
},
|
|
1332
|
-
"description": "Duplicate a doc (same project or different project)",
|
|
1333
|
-
"examples": [
|
|
1334
|
-
"<%= config.bin %> duplicate doc my-doc",
|
|
1335
|
-
"<%= config.bin %> duplicate doc readme --new-slug readme-v2",
|
|
1336
|
-
"<%= config.bin %> duplicate doc api-guide --to /path/to/other/project",
|
|
1337
|
-
"<%= config.bin %> duplicate doc spec --to ../other --new-slug spec-copy --title \"Spec Copy\""
|
|
1338
|
-
],
|
|
1339
|
-
"flags": {
|
|
1340
|
-
"to": {
|
|
1341
|
-
"char": "t",
|
|
1342
|
-
"description": "Target project path (defaults to same project if not specified)",
|
|
1343
|
-
"name": "to",
|
|
1344
|
-
"hasDynamicHelp": false,
|
|
1345
|
-
"multiple": false,
|
|
1346
|
-
"type": "option"
|
|
1347
|
-
},
|
|
1348
|
-
"new-slug": {
|
|
1349
|
-
"char": "s",
|
|
1350
|
-
"description": "Slug for the duplicate (defaults to \"{slug}-copy\")",
|
|
1351
|
-
"name": "new-slug",
|
|
1352
|
-
"hasDynamicHelp": false,
|
|
1353
|
-
"multiple": false,
|
|
1354
|
-
"type": "option"
|
|
1355
|
-
},
|
|
1356
|
-
"title": {
|
|
1357
|
-
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1358
|
-
"name": "title",
|
|
1359
|
-
"hasDynamicHelp": false,
|
|
1360
|
-
"multiple": false,
|
|
1361
|
-
"type": "option"
|
|
1362
|
-
},
|
|
1363
|
-
"project": {
|
|
1364
|
-
"description": "Project name or path (defaults to current directory)",
|
|
1365
|
-
"name": "project",
|
|
1366
|
-
"hasDynamicHelp": false,
|
|
1367
|
-
"multiple": false,
|
|
1368
|
-
"type": "option"
|
|
1369
|
-
}
|
|
1370
|
-
},
|
|
1371
|
-
"hasDynamicHelp": false,
|
|
1372
|
-
"hiddenAliases": [],
|
|
1373
|
-
"id": "duplicate:doc",
|
|
1374
|
-
"pluginAlias": "centy",
|
|
1375
|
-
"pluginName": "centy",
|
|
1376
|
-
"pluginType": "core",
|
|
1377
|
-
"strict": true,
|
|
1378
|
-
"enableJsonFlag": false,
|
|
1379
|
-
"isESM": true,
|
|
1380
|
-
"relativePath": [
|
|
1381
|
-
"dist",
|
|
1382
|
-
"commands",
|
|
1383
|
-
"duplicate",
|
|
1384
|
-
"doc.js"
|
|
1385
|
-
]
|
|
1386
|
-
},
|
|
1387
|
-
"duplicate:issue": {
|
|
1388
|
-
"aliases": [],
|
|
1389
|
-
"args": {
|
|
1390
|
-
"id": {
|
|
1391
|
-
"description": "Issue ID (UUID) or display number",
|
|
1392
|
-
"name": "id",
|
|
1393
|
-
"required": true
|
|
1394
|
-
}
|
|
1395
|
-
},
|
|
1396
|
-
"description": "Duplicate an issue (same project or different project)",
|
|
1397
|
-
"examples": [
|
|
1398
|
-
"<%= config.bin %> duplicate issue 1",
|
|
1399
|
-
"<%= config.bin %> duplicate issue 1 --title \"New feature branch\"",
|
|
1400
|
-
"<%= config.bin %> duplicate issue abc123-uuid --to /path/to/other/project",
|
|
1401
|
-
"<%= config.bin %> duplicate issue 5 --to ../other --title \"Copy for testing\""
|
|
1402
|
-
],
|
|
1403
|
-
"flags": {
|
|
1404
|
-
"to": {
|
|
1405
|
-
"char": "t",
|
|
1406
|
-
"description": "Target project path (defaults to same project if not specified)",
|
|
1407
|
-
"name": "to",
|
|
1408
|
-
"hasDynamicHelp": false,
|
|
1409
|
-
"multiple": false,
|
|
1410
|
-
"type": "option"
|
|
1411
|
-
},
|
|
1412
|
-
"title": {
|
|
1413
|
-
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1414
|
-
"name": "title",
|
|
1415
|
-
"hasDynamicHelp": false,
|
|
1416
|
-
"multiple": false,
|
|
1417
|
-
"type": "option"
|
|
1418
|
-
},
|
|
1419
|
-
"project": {
|
|
1420
|
-
"description": "Project name or path (defaults to current directory)",
|
|
1421
|
-
"name": "project",
|
|
1422
|
-
"hasDynamicHelp": false,
|
|
1423
|
-
"multiple": false,
|
|
1424
|
-
"type": "option"
|
|
1425
|
-
}
|
|
1426
|
-
},
|
|
1427
|
-
"hasDynamicHelp": false,
|
|
1428
|
-
"hiddenAliases": [],
|
|
1429
|
-
"id": "duplicate:issue",
|
|
1430
|
-
"pluginAlias": "centy",
|
|
1431
|
-
"pluginName": "centy",
|
|
1432
|
-
"pluginType": "core",
|
|
1433
|
-
"strict": true,
|
|
1434
|
-
"enableJsonFlag": false,
|
|
1435
|
-
"isESM": true,
|
|
1436
|
-
"relativePath": [
|
|
1437
|
-
"dist",
|
|
1438
|
-
"commands",
|
|
1439
|
-
"duplicate",
|
|
1440
|
-
"issue.js"
|
|
1441
|
-
]
|
|
1442
|
-
},
|
|
1443
1323
|
"delete:asset": {
|
|
1444
1324
|
"aliases": [],
|
|
1445
1325
|
"args": {
|
|
@@ -1837,6 +1717,126 @@
|
|
|
1837
1717
|
"user.js"
|
|
1838
1718
|
]
|
|
1839
1719
|
},
|
|
1720
|
+
"duplicate:doc": {
|
|
1721
|
+
"aliases": [],
|
|
1722
|
+
"args": {
|
|
1723
|
+
"slug": {
|
|
1724
|
+
"description": "Doc slug",
|
|
1725
|
+
"name": "slug",
|
|
1726
|
+
"required": true
|
|
1727
|
+
}
|
|
1728
|
+
},
|
|
1729
|
+
"description": "Duplicate a doc (same project or different project)",
|
|
1730
|
+
"examples": [
|
|
1731
|
+
"<%= config.bin %> duplicate doc my-doc",
|
|
1732
|
+
"<%= config.bin %> duplicate doc readme --new-slug readme-v2",
|
|
1733
|
+
"<%= config.bin %> duplicate doc api-guide --to /path/to/other/project",
|
|
1734
|
+
"<%= config.bin %> duplicate doc spec --to ../other --new-slug spec-copy --title \"Spec Copy\""
|
|
1735
|
+
],
|
|
1736
|
+
"flags": {
|
|
1737
|
+
"to": {
|
|
1738
|
+
"char": "t",
|
|
1739
|
+
"description": "Target project path (defaults to same project if not specified)",
|
|
1740
|
+
"name": "to",
|
|
1741
|
+
"hasDynamicHelp": false,
|
|
1742
|
+
"multiple": false,
|
|
1743
|
+
"type": "option"
|
|
1744
|
+
},
|
|
1745
|
+
"new-slug": {
|
|
1746
|
+
"char": "s",
|
|
1747
|
+
"description": "Slug for the duplicate (defaults to \"{slug}-copy\")",
|
|
1748
|
+
"name": "new-slug",
|
|
1749
|
+
"hasDynamicHelp": false,
|
|
1750
|
+
"multiple": false,
|
|
1751
|
+
"type": "option"
|
|
1752
|
+
},
|
|
1753
|
+
"title": {
|
|
1754
|
+
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1755
|
+
"name": "title",
|
|
1756
|
+
"hasDynamicHelp": false,
|
|
1757
|
+
"multiple": false,
|
|
1758
|
+
"type": "option"
|
|
1759
|
+
},
|
|
1760
|
+
"project": {
|
|
1761
|
+
"description": "Project name or path (defaults to current directory)",
|
|
1762
|
+
"name": "project",
|
|
1763
|
+
"hasDynamicHelp": false,
|
|
1764
|
+
"multiple": false,
|
|
1765
|
+
"type": "option"
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
"hasDynamicHelp": false,
|
|
1769
|
+
"hiddenAliases": [],
|
|
1770
|
+
"id": "duplicate:doc",
|
|
1771
|
+
"pluginAlias": "centy",
|
|
1772
|
+
"pluginName": "centy",
|
|
1773
|
+
"pluginType": "core",
|
|
1774
|
+
"strict": true,
|
|
1775
|
+
"enableJsonFlag": false,
|
|
1776
|
+
"isESM": true,
|
|
1777
|
+
"relativePath": [
|
|
1778
|
+
"dist",
|
|
1779
|
+
"commands",
|
|
1780
|
+
"duplicate",
|
|
1781
|
+
"doc.js"
|
|
1782
|
+
]
|
|
1783
|
+
},
|
|
1784
|
+
"duplicate:issue": {
|
|
1785
|
+
"aliases": [],
|
|
1786
|
+
"args": {
|
|
1787
|
+
"id": {
|
|
1788
|
+
"description": "Issue ID (UUID) or display number",
|
|
1789
|
+
"name": "id",
|
|
1790
|
+
"required": true
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"description": "Duplicate an issue (same project or different project)",
|
|
1794
|
+
"examples": [
|
|
1795
|
+
"<%= config.bin %> duplicate issue 1",
|
|
1796
|
+
"<%= config.bin %> duplicate issue 1 --title \"New feature branch\"",
|
|
1797
|
+
"<%= config.bin %> duplicate issue abc123-uuid --to /path/to/other/project",
|
|
1798
|
+
"<%= config.bin %> duplicate issue 5 --to ../other --title \"Copy for testing\""
|
|
1799
|
+
],
|
|
1800
|
+
"flags": {
|
|
1801
|
+
"to": {
|
|
1802
|
+
"char": "t",
|
|
1803
|
+
"description": "Target project path (defaults to same project if not specified)",
|
|
1804
|
+
"name": "to",
|
|
1805
|
+
"hasDynamicHelp": false,
|
|
1806
|
+
"multiple": false,
|
|
1807
|
+
"type": "option"
|
|
1808
|
+
},
|
|
1809
|
+
"title": {
|
|
1810
|
+
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1811
|
+
"name": "title",
|
|
1812
|
+
"hasDynamicHelp": false,
|
|
1813
|
+
"multiple": false,
|
|
1814
|
+
"type": "option"
|
|
1815
|
+
},
|
|
1816
|
+
"project": {
|
|
1817
|
+
"description": "Project name or path (defaults to current directory)",
|
|
1818
|
+
"name": "project",
|
|
1819
|
+
"hasDynamicHelp": false,
|
|
1820
|
+
"multiple": false,
|
|
1821
|
+
"type": "option"
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1824
|
+
"hasDynamicHelp": false,
|
|
1825
|
+
"hiddenAliases": [],
|
|
1826
|
+
"id": "duplicate:issue",
|
|
1827
|
+
"pluginAlias": "centy",
|
|
1828
|
+
"pluginName": "centy",
|
|
1829
|
+
"pluginType": "core",
|
|
1830
|
+
"strict": true,
|
|
1831
|
+
"enableJsonFlag": false,
|
|
1832
|
+
"isESM": true,
|
|
1833
|
+
"relativePath": [
|
|
1834
|
+
"dist",
|
|
1835
|
+
"commands",
|
|
1836
|
+
"duplicate",
|
|
1837
|
+
"issue.js"
|
|
1838
|
+
]
|
|
1839
|
+
},
|
|
1840
1840
|
"get:asset": {
|
|
1841
1841
|
"aliases": [
|
|
1842
1842
|
"show:asset"
|
|
@@ -4026,5 +4026,5 @@
|
|
|
4026
4026
|
]
|
|
4027
4027
|
}
|
|
4028
4028
|
},
|
|
4029
|
-
"version": "0.1.
|
|
4029
|
+
"version": "0.1.1"
|
|
4030
4030
|
}
|