@nine-lab/nine-mu 0.1.114 โ†’ 0.1.115

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.114",
3
+ "version": "0.1.115",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -1,4 +1,4 @@
1
- import { trace1 as trace } from "../external/NoPeer.js";
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";
@@ -1,21 +1,20 @@
1
- import { trace } from '@nine-lab/nine-util';
1
+ import { trace as traceOrigin } from '@nine-lab/nine-util';
2
2
 
3
- export class NineMuTrace extends trace {
3
+ export class NineMuTrace extends traceOrigin.constructor {
4
4
  #logger;
5
5
 
6
6
  constructor() {
7
7
  super();
8
8
  // ๐ŸŸข ๋ถ€๋ชจ์˜ init์„ ์ด์šฉํ•ด '๋‚˜๋งŒ์˜ ๋ฆฌ๋ชจ์ปจ'์„ ์ƒ์„ฑํ•ด์„œ ๋”ฑ ๋ณด๊ด€ํ•ฉ๋‹ˆ๋‹ค.
9
- this.init("nine-mu", "#0969da");
9
+ this.#logger = this.init("nine-mu", "#0969da");
10
10
  }
11
11
 
12
- /**
13
12
  // ๐Ÿ”ด ๋ถ€๋ชจ์˜ log๋ฅผ ๋‚ด ๋ฆฌ๋ชจ์ปจ์˜ log๋กœ ๋ฎ์–ด์”Œ์›๋‹ˆ๋‹ค (Override)
14
13
  get log() {
15
14
  return this.#logger.log;
16
- } */
15
+ }
17
16
 
18
17
  // ํ•„์š”ํ•˜๋‹ค๋ฉด warn, error๋„ ๋˜‘๊ฐ™์ด...
19
18
  }
20
19
 
21
- export const trace1 = new NineMuTrace();
20
+ export const trace = new NineMuTrace();