kintone-migrator 0.24.8 → 0.24.9

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 CHANGED
@@ -6171,7 +6171,7 @@ function buildCaptureTasks(args) {
6171
6171
  container: c.customization,
6172
6172
  input: {
6173
6173
  basePath: input.customizeBasePath,
6174
- filePrefix: input.appName
6174
+ filePrefix: ""
6175
6175
  }
6176
6176
  });
6177
6177
  await saveCustomization({
@@ -6461,10 +6461,7 @@ var init_default = define({
6461
6461
  cs.start(`Capturing all domains for ${appName}...`);
6462
6462
  const results = await captureAllForApp({
6463
6463
  container: containers,
6464
- input: {
6465
- appName,
6466
- customizeBasePath: dirname(resolve(paths.customize))
6467
- }
6464
+ input: { customizeBasePath: dirname(resolve(paths.customize)) }
6468
6465
  });
6469
6466
  const successCount = results.filter((r) => r.success).length;
6470
6467
  const failCount = results.length - successCount;