@nine-lab/nine-mu 0.1.120 โ 0.1.122
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/nine-mu.js +36 -44
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +3 -3
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChat.js +1 -1
- package/src/external/NoPeer.js +4 -14
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { trace } from "../external/NoPeer.js";
|
|
2
2
|
import { nine, api } from '@nine-lab/nine-util';
|
|
3
3
|
import { NineMuService } from '../services/NineMuService.js';
|
|
4
4
|
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
package/src/external/NoPeer.js
CHANGED
|
@@ -1,20 +1,10 @@
|
|
|
1
|
-
import { trace } from '@nine-lab/nine-util';
|
|
2
|
-
|
|
3
|
-
export class NineMuTrace extends trace.constructor {
|
|
4
|
-
#logger;
|
|
1
|
+
import { trace as traceOrigin } from '@nine-lab/nine-util';
|
|
5
2
|
|
|
3
|
+
export class Trace extends traceOrigin.constructor {
|
|
6
4
|
constructor() {
|
|
7
5
|
super();
|
|
8
|
-
|
|
9
|
-
this.#logger = this.init("nine-mu", "#0969da");
|
|
6
|
+
this.init("nine-mu", "#0969da");
|
|
10
7
|
}
|
|
11
|
-
/**
|
|
12
|
-
// ๐ด ๋ถ๋ชจ์ log๋ฅผ ๋ด ๋ฆฌ๋ชจ์ปจ์ log๋ก ๋ฎ์ด์์๋๋ค (Override)
|
|
13
|
-
get log() {
|
|
14
|
-
return this.#logger.log;
|
|
15
|
-
} */
|
|
16
|
-
|
|
17
|
-
// ํ์ํ๋ค๋ฉด warn, error๋ ๋๊ฐ์ด...
|
|
18
8
|
}
|
|
19
9
|
|
|
20
|
-
export const
|
|
10
|
+
export const trace = new Trace();
|