Skip to content

Commit

Permalink
Bump npm packages version
Browse files Browse the repository at this point in the history
  • Loading branch information
ycs77 committed Dec 14, 2024
1 parent 8d1d5b4 commit 8166950
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,8 @@ protected function installVue(): void
{
$this->info(' Installing vue');

$this->npm->addDev('vue', '^3.4.0');
$this->npm->addDev('@vitejs/plugin-vue', '^5.0.0');
$this->npm->addDev('vue', '^3.5.0');
$this->npm->addDev('@vitejs/plugin-vue', '^5.2.0');

$js = $this->js;

Expand Down Expand Up @@ -330,14 +330,14 @@ protected function installTypescript(): void
$this->info(' Installing typescript');

// install typescript
$this->npm->addDev('typescript', '~5.4.0');
$this->npm->addDev('typescript', '~5.6.3');
$this->npm->addDev('@types/node', '^20.0.0');
$this->npm->addDev('@tsconfig/node20', '^20.0.0');

// install typescript for vue
$this->npm->addDev('vue-tsc', '^2.0.17');
$this->npm->addDev('@vue/tsconfig', '^0.5.1');
$this->npm->script('type-check', 'vue-tsc --build --force');
$this->npm->addDev('vue-tsc', '^2.1.10');
$this->npm->addDev('@vue/tsconfig', '^0.7.0');
$this->npm->script('type-check', 'vue-tsc --build');

foreach ([
'tsconfig.json',
Expand Down

0 comments on commit 8166950

Please sign in to comment.