kintone-migrator 0.18.1 → 0.19.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/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6205,7 +6205,7 @@ function sanitizeForFileSystem(name) {
|
|
|
6205
6205
|
return sanitized === "" ? "_" : sanitized;
|
|
6206
6206
|
}
|
|
6207
6207
|
function resolveAppName(app) {
|
|
6208
|
-
const raw = app.code !== "" ? app.code : `app-${app.appId}`;
|
|
6208
|
+
const raw = app.code !== "" ? app.code : app.name !== "" ? app.name : `app-${app.appId}`;
|
|
6209
6209
|
return AppName.create(sanitizeForFileSystem(raw));
|
|
6210
6210
|
}
|
|
6211
6211
|
|