Skip to content

Commit

Permalink
Revert support for quasar 2.0, this will need to be on v2.0 of the pa…
Browse files Browse the repository at this point in the history
…ckage

Revert "bump quasar compatability to 2.0"
  • Loading branch information
marcorivm authored Sep 15, 2020
2 parents dfe6725 + ec3c765 commit 445359d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quasar-app-extension-system-environment-variables",
"version": "1.0.0",
"version": "1.0.1",
"description": "Loads environment variables from the system and makes them available through process.env. Works best for building on CI/CD environments",
"author": "marcorivm <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ const extendWithDotenv = function (api, conf) {

module.exports = function (api) {
// quasar compatibility check
api.compatibleWith('@quasar/app', '>1.0.0')
api.compatibleWith('@quasar/app', '^1.0.0')

api.extendQuasarConf((conf) => {
extendWithDotenv(api, conf)
})
}
}

0 comments on commit 445359d

Please sign in to comment.