Skip to content

Commit

Permalink
fixed audit during import
Browse files Browse the repository at this point in the history
  • Loading branch information
cs-raj committed Mar 8, 2024
1 parent bfa80b4 commit f5f3083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/contentstack-import/src/import/module-importer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class ModuleImporter {
args.push('--modules', this.importConfig.moduleName);
} else if (this.importConfig.modules.types.length) {
this.importConfig.modules.types
.filter((val) => ['content-types', 'global-fields', 'entries'].includes(val))
.filter((val) => ['content-types', 'global-fields', 'entries', 'extensions'].includes(val))
.forEach((val) => {
args.push('--modules', val);
});
Expand Down

0 comments on commit f5f3083

Please sign in to comment.