mioki 0.6.8 → 0.6.10
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.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -937,7 +937,7 @@ function getMiokiLogger(level) {
|
|
|
937
937
|
|
|
938
938
|
//#endregion
|
|
939
939
|
//#region package.json
|
|
940
|
-
var version = "0.6.
|
|
940
|
+
var version = "0.6.10";
|
|
941
941
|
|
|
942
942
|
//#endregion
|
|
943
943
|
//#region src/actions.ts
|
|
@@ -1850,8 +1850,9 @@ async function start(options = {}) {
|
|
|
1850
1850
|
const sortedGroups = Array.from(pluginGroups.entries()).toSorted(([a], [b]) => a - b);
|
|
1851
1851
|
const failedEnablePlugins = [];
|
|
1852
1852
|
try {
|
|
1853
|
-
napcat.logger.info(`>>>
|
|
1853
|
+
napcat.logger.info(`>>> 加载内置插件: ${BUILTIN_PLUGINS.map((p) => consola_utils.colors.cyan(p.name)).join(", ")}`);
|
|
1854
1854
|
await Promise.all(BUILTIN_PLUGINS.map((p) => enablePlugin(napcat, p, "builtin")));
|
|
1855
|
+
napcat.logger.info(`>>> 加载用户插件: ${sortedGroups.map(([priority, plugins$1]) => `优先级 ${consola_utils.colors.yellow(priority)} (${plugins$1.map((p) => consola_utils.colors.cyan(p.name)).join(", ")})`).join(",")}`);
|
|
1855
1856
|
for (const [_, plugins$1] of sortedGroups) await Promise.all(plugins$1.map(async (p) => {
|
|
1856
1857
|
try {
|
|
1857
1858
|
await enablePlugin(napcat, p, "external");
|