Skip to content

Commit

Permalink
fix(create): Move typescript to dev dependencies (#2816)
Browse files Browse the repository at this point in the history
  • Loading branch information
coopbri authored May 31, 2024
1 parent e61c38d commit b3c29e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/create/src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,12 @@ export function getDependencies(
`@vendure/admin-ui-plugin${vendurePkgVersion}`,
'dotenv',
dbDriverPackage(dbType),
];
const devDependencies = [
`@vendure/cli${vendurePkgVersion}`,
'concurrently',
`typescript@${TYPESCRIPT_VERSION}`,
];
const devDependencies = ['concurrently', `@vendure/cli${vendurePkgVersion}`];
return { dependencies, devDependencies };
}

Expand Down

0 comments on commit b3c29e7

Please sign in to comment.