diff --git a/package.json b/package.json index 4f742f7..502a0b6 100644 --- a/package.json +++ b/package.json @@ -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 ", "license": "MIT", diff --git a/src/index.js b/src/index.js index 08124ad..c383a29 100644 --- a/src/index.js +++ b/src/index.js @@ -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) }) -} +} \ No newline at end of file