Skip to content

Commit

Permalink
Write bulkReads to files
Browse files Browse the repository at this point in the history
  • Loading branch information
FokkeZB committed Oct 9, 2024
1 parent 9f159fb commit 2cf7a2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/utils/convert.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ const renderIndex = async (appDefinition) => {
triggers: 'Trigger',
creates: 'Create',
searches: 'Search',
bulkReads: 'BulkRead',
},
(importNameSuffix, stepType) => {
_.each(appDefinition[stepType], (definition, key) => {
Expand Down Expand Up @@ -380,7 +381,7 @@ const convertApp = async (appInfo, appDefinition, newAppDir) => {

const promises = [];

['triggers', 'creates', 'searches'].forEach((stepType) => {
['triggers', 'creates', 'searches', 'bulkReads'].forEach((stepType) => {
_.each(appDefinition[stepType], (definition, key) => {
promises.push(
writeStep(stepType, definition, key, newAppDir),
Expand Down

0 comments on commit 2cf7a2e

Please sign in to comment.