Skip to content

Commit

Permalink
fix: jest is missing in dev dependencies of template
Browse files Browse the repository at this point in the history
jest is specified because jest.config.ts is listed in the template
  • Loading branch information
Keith-CY committed Oct 12, 2023
1 parent 5cf1487 commit d43ee52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/src/project-creation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const DEPENDENCIES: Dependencies = {
}

const DEV_DEPENDENCIES: Dependencies = {
jest: '29.7.0',
'ts-node': '10.9.1',
typescript: '4.9.4',
typedoc: '0.24.7',
Expand Down Expand Up @@ -192,7 +193,7 @@ async function installKuaiDependencies(projectRoot: string) {
}
}

console.info('add kuai depende into package')
console.info('add kuai dependencies into package')
return installRecommendedDependencies(projectRoot, kuaiDep, false)
}

Expand Down

0 comments on commit d43ee52

Please sign in to comment.