ide-assi 0.338.0 → 0.340.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/dist/bundle.cjs.js +2234 -5
- package/dist/bundle.esm.js +2234 -5
- package/dist/components/ideDiff.js +1 -1
- package/package.json +1 -1
- package/src/components/ideDiff.js +1 -1
|
@@ -22,7 +22,7 @@ import { lintKeymap } from "@codemirror/lint";
|
|
|
22
22
|
import { autocompletion, completionKeymap } from "@codemirror/autocomplete";
|
|
23
23
|
|
|
24
24
|
// Diff 로직을 위해 diff-match-patch 사용
|
|
25
|
-
import { diff_match_patch } from 'diff-
|
|
25
|
+
import { diff_match_patch } from 'diff-match-patch';
|
|
26
26
|
|
|
27
27
|
// ... (나머지 코드는 동일) ...
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@ import { lintKeymap } from "@codemirror/lint";
|
|
|
22
22
|
import { autocompletion, completionKeymap } from "@codemirror/autocomplete";
|
|
23
23
|
|
|
24
24
|
// Diff 로직을 위해 diff-match-patch 사용
|
|
25
|
-
import { diff_match_patch } from 'diff-
|
|
25
|
+
import { diff_match_patch } from 'diff-match-patch';
|
|
26
26
|
|
|
27
27
|
// ... (나머지 코드는 동일) ...
|
|
28
28
|
|