Skip to content

Commit

Permalink
chore: add explicit vue dependency in fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jul 6, 2023
1 parent 4e32e70 commit c10a624
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion playground/package.json
Expand Up @@ -7,6 +7,7 @@
"start": "nuxi preview"
},
"dependencies": {
"nuxt": "workspace:*"
"nuxt": "workspace:*",
"vue": "latest"
}
}
3 changes: 2 additions & 1 deletion test/fixtures/basic-types/package.json
Expand Up @@ -11,6 +11,7 @@
"devDependencies": {
"ofetch": "latest",
"vitest": "latest",
"vue-router": "latest"
"vue-router": "latest",
"vue": "latest"
}
}
3 changes: 2 additions & 1 deletion test/fixtures/basic/package.json
Expand Up @@ -10,6 +10,7 @@
},
"devDependencies": {
"ufo": "latest",
"unplugin": "latest"
"unplugin": "latest",
"vue": "latest"
}
}
3 changes: 2 additions & 1 deletion test/fixtures/minimal-types/package.json
Expand Up @@ -6,6 +6,7 @@
"test:types": "nuxi prepare && npx vue-tsc --noEmit"
},
"dependencies": {
"nuxt": "workspace:*"
"nuxt": "workspace:*",
"vue": "latest"
}
}
3 changes: 2 additions & 1 deletion test/fixtures/minimal/package.json
Expand Up @@ -5,6 +5,7 @@
"build": "nuxi build"
},
"dependencies": {
"nuxt": "workspace:*"
"nuxt": "workspace:*",
"vue": "latest"
}
}

0 comments on commit c10a624

Please sign in to comment.