Skip to content

Commit

Permalink
quasar as devDependency
Browse files Browse the repository at this point in the history
I suggest allowing quasar to be a devDependency to allow code completion in app extensions without adding a dependency.

quasarframework/quasar-starter-kit-app-extension#10
  • Loading branch information
moander authored Nov 15, 2019
1 parent a27c412 commit b91b723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/modes/template/tagProviders/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function getTagProviderSettings(workspacePath: string | null | undefined)
dependencies['vuetify'] = true;
}
// Quasar v1+:
if (dependencies['quasar']) {
if (dependencies['quasar'] || devDependencies['quasar']) {
settings['quasar'] = true;
}
// Quasar pre v1 on non quasar-cli:
Expand Down

0 comments on commit b91b723

Please sign in to comment.