Skip to content

Commit

Permalink
chore(create): move 'dotenv' and 'typescript' to dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
coopbri committed Apr 27, 2024
1 parent 8a1fffb commit e99060d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/create/src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,11 +261,14 @@ export function getDependencies(
`@vendure/email-plugin${vendurePkgVersion}`,
`@vendure/asset-server-plugin${vendurePkgVersion}`,
`@vendure/admin-ui-plugin${vendurePkgVersion}`,
'dotenv',
dbDriverPackage(dbType),
];
const devDependencies = [
`@vendure/cli${vendurePkgVersion}`,
'concurrently',
'dotenv',
`typescript@${TYPESCRIPT_VERSION}`,
];
const devDependencies = ['concurrently', `@vendure/cli${vendurePkgVersion}`];
return { dependencies, devDependencies };
}

Expand Down

0 comments on commit e99060d

Please sign in to comment.