Skip to content

Commit

Permalink
🔧 dev Fix generator config: next actions
Browse files Browse the repository at this point in the history
  • Loading branch information
steeeee0223 committed Jan 26, 2024
1 parent 1c389d5 commit 589a9e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions turbo/generators/generators/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export const nextAction = {
},
{
type: "append",
path: "apps/{{app}}/actions/index.ts",
template: 'export * from "./{{dashCase name}}"',
path: "apps/{{app}}/src/actions/index.ts",
template: 'export * from "./{{dashCase name}};"',
},
{
type: "add",
Expand All @@ -44,7 +44,7 @@ export const nextAction = {
{
type: "append",
path: "packages/validators/src/actions/index.ts",
template: 'export * from "./{{dashCase name}}"',
template: 'export * from "./{{dashCase name}};"',
},
],
} satisfies PlopTypes.PlopGeneratorConfig;

0 comments on commit 589a9e4

Please sign in to comment.