nodebbs 0.0.9 → 0.2.0
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/oclif.manifest.json +73 -73
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -202,6 +202,37 @@
|
|
|
202
202
|
"seed.js"
|
|
203
203
|
]
|
|
204
204
|
},
|
|
205
|
+
"pack": {
|
|
206
|
+
"aliases": [],
|
|
207
|
+
"args": {},
|
|
208
|
+
"description": "生成离线部署包",
|
|
209
|
+
"flags": {
|
|
210
|
+
"output": {
|
|
211
|
+
"char": "o",
|
|
212
|
+
"description": "输出文件名",
|
|
213
|
+
"name": "output",
|
|
214
|
+
"default": "nodebbs-offline.tar.gz",
|
|
215
|
+
"hasDynamicHelp": false,
|
|
216
|
+
"multiple": false,
|
|
217
|
+
"type": "option"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"hasDynamicHelp": false,
|
|
221
|
+
"hiddenAliases": [],
|
|
222
|
+
"id": "pack",
|
|
223
|
+
"pluginAlias": "nodebbs",
|
|
224
|
+
"pluginName": "nodebbs",
|
|
225
|
+
"pluginType": "core",
|
|
226
|
+
"strict": true,
|
|
227
|
+
"enableJsonFlag": false,
|
|
228
|
+
"isESM": true,
|
|
229
|
+
"relativePath": [
|
|
230
|
+
"dist",
|
|
231
|
+
"commands",
|
|
232
|
+
"pack",
|
|
233
|
+
"index.js"
|
|
234
|
+
]
|
|
235
|
+
},
|
|
205
236
|
"logs:all": {
|
|
206
237
|
"aliases": [],
|
|
207
238
|
"args": {},
|
|
@@ -377,24 +408,35 @@
|
|
|
377
408
|
"web.js"
|
|
378
409
|
]
|
|
379
410
|
},
|
|
380
|
-
"
|
|
411
|
+
"start": {
|
|
381
412
|
"aliases": [],
|
|
382
413
|
"args": {},
|
|
383
|
-
"description": "
|
|
414
|
+
"description": "开始部署",
|
|
384
415
|
"flags": {
|
|
385
|
-
"
|
|
386
|
-
"char": "
|
|
387
|
-
"description": "
|
|
388
|
-
"name": "
|
|
389
|
-
"default": "nodebbs-offline.tar.gz",
|
|
416
|
+
"env": {
|
|
417
|
+
"char": "e",
|
|
418
|
+
"description": "部署环境 (production, lowmem, basic)",
|
|
419
|
+
"name": "env",
|
|
390
420
|
"hasDynamicHelp": false,
|
|
391
421
|
"multiple": false,
|
|
422
|
+
"options": [
|
|
423
|
+
"production",
|
|
424
|
+
"lowmem",
|
|
425
|
+
"basic"
|
|
426
|
+
],
|
|
392
427
|
"type": "option"
|
|
428
|
+
},
|
|
429
|
+
"build": {
|
|
430
|
+
"char": "b",
|
|
431
|
+
"description": "重新构建并启动服务 (跳过健康检查和数据初始化)",
|
|
432
|
+
"name": "build",
|
|
433
|
+
"allowNo": false,
|
|
434
|
+
"type": "boolean"
|
|
393
435
|
}
|
|
394
436
|
},
|
|
395
437
|
"hasDynamicHelp": false,
|
|
396
438
|
"hiddenAliases": [],
|
|
397
|
-
"id": "
|
|
439
|
+
"id": "start",
|
|
398
440
|
"pluginAlias": "nodebbs",
|
|
399
441
|
"pluginName": "nodebbs",
|
|
400
442
|
"pluginType": "core",
|
|
@@ -404,28 +446,7 @@
|
|
|
404
446
|
"relativePath": [
|
|
405
447
|
"dist",
|
|
406
448
|
"commands",
|
|
407
|
-
"
|
|
408
|
-
"index.js"
|
|
409
|
-
]
|
|
410
|
-
},
|
|
411
|
-
"rebuild": {
|
|
412
|
-
"aliases": [],
|
|
413
|
-
"args": {},
|
|
414
|
-
"description": "重新构建并启动服务 (start --build)",
|
|
415
|
-
"flags": {},
|
|
416
|
-
"hasDynamicHelp": false,
|
|
417
|
-
"hiddenAliases": [],
|
|
418
|
-
"id": "rebuild",
|
|
419
|
-
"pluginAlias": "nodebbs",
|
|
420
|
-
"pluginName": "nodebbs",
|
|
421
|
-
"pluginType": "core",
|
|
422
|
-
"strict": false,
|
|
423
|
-
"enableJsonFlag": false,
|
|
424
|
-
"isESM": true,
|
|
425
|
-
"relativePath": [
|
|
426
|
-
"dist",
|
|
427
|
-
"commands",
|
|
428
|
-
"rebuild",
|
|
449
|
+
"start",
|
|
429
450
|
"index.js"
|
|
430
451
|
]
|
|
431
452
|
},
|
|
@@ -464,6 +485,27 @@
|
|
|
464
485
|
"index.js"
|
|
465
486
|
]
|
|
466
487
|
},
|
|
488
|
+
"rebuild": {
|
|
489
|
+
"aliases": [],
|
|
490
|
+
"args": {},
|
|
491
|
+
"description": "重新构建并启动服务 (start --build)",
|
|
492
|
+
"flags": {},
|
|
493
|
+
"hasDynamicHelp": false,
|
|
494
|
+
"hiddenAliases": [],
|
|
495
|
+
"id": "rebuild",
|
|
496
|
+
"pluginAlias": "nodebbs",
|
|
497
|
+
"pluginName": "nodebbs",
|
|
498
|
+
"pluginType": "core",
|
|
499
|
+
"strict": false,
|
|
500
|
+
"enableJsonFlag": false,
|
|
501
|
+
"isESM": true,
|
|
502
|
+
"relativePath": [
|
|
503
|
+
"dist",
|
|
504
|
+
"commands",
|
|
505
|
+
"rebuild",
|
|
506
|
+
"index.js"
|
|
507
|
+
]
|
|
508
|
+
},
|
|
467
509
|
"shell:api": {
|
|
468
510
|
"aliases": [],
|
|
469
511
|
"args": {},
|
|
@@ -604,48 +646,6 @@
|
|
|
604
646
|
"web.js"
|
|
605
647
|
]
|
|
606
648
|
},
|
|
607
|
-
"start": {
|
|
608
|
-
"aliases": [],
|
|
609
|
-
"args": {},
|
|
610
|
-
"description": "开始部署",
|
|
611
|
-
"flags": {
|
|
612
|
-
"env": {
|
|
613
|
-
"char": "e",
|
|
614
|
-
"description": "部署环境 (production, lowmem, basic)",
|
|
615
|
-
"name": "env",
|
|
616
|
-
"hasDynamicHelp": false,
|
|
617
|
-
"multiple": false,
|
|
618
|
-
"options": [
|
|
619
|
-
"production",
|
|
620
|
-
"lowmem",
|
|
621
|
-
"basic"
|
|
622
|
-
],
|
|
623
|
-
"type": "option"
|
|
624
|
-
},
|
|
625
|
-
"build": {
|
|
626
|
-
"char": "b",
|
|
627
|
-
"description": "重新构建并启动服务 (跳过健康检查和数据初始化)",
|
|
628
|
-
"name": "build",
|
|
629
|
-
"allowNo": false,
|
|
630
|
-
"type": "boolean"
|
|
631
|
-
}
|
|
632
|
-
},
|
|
633
|
-
"hasDynamicHelp": false,
|
|
634
|
-
"hiddenAliases": [],
|
|
635
|
-
"id": "start",
|
|
636
|
-
"pluginAlias": "nodebbs",
|
|
637
|
-
"pluginName": "nodebbs",
|
|
638
|
-
"pluginType": "core",
|
|
639
|
-
"strict": true,
|
|
640
|
-
"enableJsonFlag": false,
|
|
641
|
-
"isESM": true,
|
|
642
|
-
"relativePath": [
|
|
643
|
-
"dist",
|
|
644
|
-
"commands",
|
|
645
|
-
"start",
|
|
646
|
-
"index.js"
|
|
647
|
-
]
|
|
648
|
-
},
|
|
649
649
|
"status": {
|
|
650
650
|
"aliases": [],
|
|
651
651
|
"args": {},
|
|
@@ -724,5 +724,5 @@
|
|
|
724
724
|
]
|
|
725
725
|
}
|
|
726
726
|
},
|
|
727
|
-
"version": "0.0
|
|
727
|
+
"version": "0.2.0"
|
|
728
728
|
}
|