storyblok 4.6.7 → 4.6.8

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
@@ -3226,7 +3226,8 @@ class MigrationStream extends Transform {
3226
3226
  return null;
3227
3227
  }
3228
3228
  const targetComponent = this.options.componentName || getComponentNameFromFilename(migrationFile.name);
3229
- processed = applyMigrationToAllBlocks(storyContent, migrationFunction, targetComponent);
3229
+ const migrationProcessed = applyMigrationToAllBlocks(storyContent, migrationFunction, targetComponent);
3230
+ processed = processed || migrationProcessed;
3230
3231
  }
3231
3232
  const newContentHash = hash(storyContent);
3232
3233
  const contentChanged = originalContentHash !== newContentHash;
@@ -5182,7 +5183,7 @@ program$1.command(`${commands.CREATE} [project-path]`).alias("c").description(`S
5182
5183
  konsola.br();
5183
5184
  });
5184
5185
 
5185
- const version = "4.6.7";
5186
+ const version = "4.6.8";
5186
5187
  const pkg = {
5187
5188
  version: version};
5188
5189