kintone-migrator 0.26.0 → 0.26.1
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/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4168,10 +4168,11 @@ async function runDiffPreview(config) {
|
|
|
4168
4168
|
}
|
|
4169
4169
|
s.stop("Comparison complete.");
|
|
4170
4170
|
printCustomizationDiffResult(result);
|
|
4171
|
+
const hasFileContentWarning = result.warnings.some((w) => w.includes("content changes are not detected"));
|
|
4171
4172
|
return {
|
|
4172
4173
|
container,
|
|
4173
4174
|
basePath,
|
|
4174
|
-
hasChanges: !result.isEmpty
|
|
4175
|
+
hasChanges: !result.isEmpty || hasFileContentWarning
|
|
4175
4176
|
};
|
|
4176
4177
|
}
|
|
4177
4178
|
//#endregion
|