@nine-lab/nine-mu 0.1.319 → 0.1.321
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 +9 -10
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineDiffPopup.js +3 -3
package/package.json
CHANGED
|
@@ -151,15 +151,15 @@ export class NineDiffPopup extends HTMLElement {
|
|
|
151
151
|
const currentContent = diff ? diff.getAsisContents() : asis_source;
|
|
152
152
|
|
|
153
153
|
payloadList.push({
|
|
154
|
-
layer,
|
|
154
|
+
//layer,
|
|
155
155
|
fullPath: full_path,
|
|
156
|
-
packageName: this.#host?.getAttribute('package-name') || "com.ninelab.ai",
|
|
156
|
+
//packageName: this.#host?.getAttribute('package-name') || "com.ninelab.ai",
|
|
157
157
|
contents: currentContent
|
|
158
158
|
});
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
try {
|
|
162
|
-
await api.post(`/nine-mu/source/
|
|
162
|
+
await api.post(`/nine-mu/source/generateRealFile`, { list: payloadList });
|
|
163
163
|
await nine.alert("요청하신 모든 파일의 소스 변경 사항이 성공적으로 반영되었습니다.");
|
|
164
164
|
this.#dialog.close();
|
|
165
165
|
} catch (error) {
|