Skip to content

Commit

Permalink
feat(create-vuepress): update packages version
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed Jan 26, 2024
1 parent f07597b commit 68d5005
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/create-vuepress/src/flow/createPackageJson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ export const createPackageJson = async ({
const packageJsonPath = join(targetDir, 'package.json')
// TODO: Update it
const devDependencies = {
'@vuepress/client': '^2.0.0-rc.0',
[`@vuepress/bundler-${bundler}`]: '^2.0.0-rc.0',
'@vuepress/theme-default': '^2.0.0-rc.0',
'@vuepress/client': '^2.0.0-rc.2',
[`@vuepress/bundler-${bundler}`]: '^2.0.0-rc.2',
'@vuepress/theme-default': '^2.0.0-rc.2',
'vue': '^3.4.0',
'vuepress': '^2.0.0-rc.0',
'vuepress': '^2.0.0-rc.2',
}

if (preset === 'blog') {
devDependencies['@vuepress/core'] = '^2.0.0-rc.0'
devDependencies['@vuepress/core'] = '^2.0.0-rc.2'
devDependencies['vue-router'] = '^4.2.5'
}

Expand Down

0 comments on commit 68d5005

Please sign in to comment.