ide-assi 0.428.0 → 0.430.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
CHANGED
|
@@ -235073,9 +235073,12 @@ class IdeDiff extends HTMLElement {
|
|
|
235073
235073
|
console.log(diffMatchPatchExports.diff_match_patch.DIFF_INSERT, text);
|
|
235074
235074
|
let tobeLines = text.split('\n');
|
|
235075
235075
|
if (tobeLines[tobeLines.length - 1] === '\n') {
|
|
235076
|
-
|
|
235076
|
+
console.log("111");
|
|
235077
|
+
tobeLines.splice(tobeLines.length - 1, 1);
|
|
235077
235078
|
}
|
|
235078
235079
|
|
|
235080
|
+
console.log(tobeLines);
|
|
235081
|
+
|
|
235079
235082
|
for (let i = 0; i < tobeLines.length; i++) {
|
|
235080
235083
|
// 빈 줄이 아니고, 마지막 줄이면서 줄바꿈이 없는 경우가 아니면 데코레이션
|
|
235081
235084
|
/**
|
package/dist/bundle.esm.js
CHANGED
|
@@ -235069,9 +235069,12 @@ class IdeDiff extends HTMLElement {
|
|
|
235069
235069
|
console.log(diffMatchPatchExports.diff_match_patch.DIFF_INSERT, text);
|
|
235070
235070
|
let tobeLines = text.split('\n');
|
|
235071
235071
|
if (tobeLines[tobeLines.length - 1] === '\n') {
|
|
235072
|
-
|
|
235072
|
+
console.log("111");
|
|
235073
|
+
tobeLines.splice(tobeLines.length - 1, 1);
|
|
235073
235074
|
}
|
|
235074
235075
|
|
|
235076
|
+
console.log(tobeLines);
|
|
235077
|
+
|
|
235075
235078
|
for (let i = 0; i < tobeLines.length; i++) {
|
|
235076
235079
|
// 빈 줄이 아니고, 마지막 줄이면서 줄바꿈이 없는 경우가 아니면 데코레이션
|
|
235077
235080
|
/**
|
|
@@ -281,9 +281,12 @@ export class IdeDiff extends HTMLElement {
|
|
|
281
281
|
console.log(diff_match_patch.DIFF_INSERT, text);
|
|
282
282
|
let tobeLines = text.split('\n');
|
|
283
283
|
if (tobeLines[tobeLines.length - 1] === '\n') {
|
|
284
|
-
|
|
284
|
+
console.log("111")
|
|
285
|
+
tobeLines.splice(tobeLines.length - 1, 1);
|
|
285
286
|
}
|
|
286
287
|
|
|
288
|
+
console.log(tobeLines);
|
|
289
|
+
|
|
287
290
|
for (let i = 0; i < tobeLines.length; i++) {
|
|
288
291
|
// 빈 줄이 아니고, 마지막 줄이면서 줄바꿈이 없는 경우가 아니면 데코레이션
|
|
289
292
|
/**
|
package/package.json
CHANGED
|
@@ -281,9 +281,12 @@ export class IdeDiff extends HTMLElement {
|
|
|
281
281
|
console.log(diff_match_patch.DIFF_INSERT, text);
|
|
282
282
|
let tobeLines = text.split('\n');
|
|
283
283
|
if (tobeLines[tobeLines.length - 1] === '\n') {
|
|
284
|
-
|
|
284
|
+
console.log("111")
|
|
285
|
+
tobeLines.splice(tobeLines.length - 1, 1);
|
|
285
286
|
}
|
|
286
287
|
|
|
288
|
+
console.log(tobeLines);
|
|
289
|
+
|
|
287
290
|
for (let i = 0; i < tobeLines.length; i++) {
|
|
288
291
|
// 빈 줄이 아니고, 마지막 줄이면서 줄바꿈이 없는 경우가 아니면 데코레이션
|
|
289
292
|
/**
|