quasar-app-extension-sellmate-ui-kit 3.2.2 → 3.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-app-extension-sellmate-ui-kit",
3
- "version": "3.2.2",
3
+ "version": "3.2.3",
4
4
  "description": "Sellmate UI Kit Extension",
5
5
  "author": "Sellmate Dev Team <dev@sellmate.co.kr>",
6
6
  "license": "MIT",
@@ -12,7 +12,7 @@
12
12
  "bugs": "https://github.com/sellmate/quasar-ui-kit/issues",
13
13
  "homepage": "",
14
14
  "dependencies": {
15
- "quasar-ui-sellmate-ui-kit": "^3.2.2"
15
+ "quasar-ui-sellmate-ui-kit": "^3.2.3"
16
16
  },
17
17
  "engines": {
18
18
  "node": ">= 8.9.0",
package/src/index.js CHANGED
@@ -6,14 +6,14 @@
6
6
  * API: https://github.com/quasarframework/quasar/blob/master/app/lib/app-extension/IndexAPI.js
7
7
  */
8
8
 
9
- function extendConf (conf, api) {
9
+ function extendConf(conf, api) {
10
10
  // register our boot file
11
11
  conf.boot.push('~quasar-app-extension-sellmate-ui-kit/src/boot/register.js')
12
12
 
13
13
  if (api.hasWebpack) {
14
14
  // make sure app extension files & ui package gets transpiled
15
15
  const transpileTarget = (
16
- // make sure app extension files & ui package gets transpiled
16
+ // make sure app extension files & ui package gets transpiled
17
17
  conf.build.webpackTranspileDependencies // q/app-webpack >= v4
18
18
  || conf.build.transpileDependencies // q/app-webpack v3
19
19
  )
@@ -33,7 +33,7 @@ module.exports = function (api) {
33
33
  api.compatibleWith('quasar', '^2.0.0')
34
34
 
35
35
  if (api.hasVite) {
36
- api.compatibleWith('@quasar/app-vite', '^1.5.0 || ^2.0.0')
36
+ api.compatibleWith('@quasar/app-vite', '^1.5.0 || ^2.0.0 || ^2.0.0-beta.5')
37
37
  }
38
38
  else if (api.hasWebpack) {
39
39
  api.compatibleWith('@quasar/app-webpack', '^3.10.0 || ^4.0.0')
package/src/install.js CHANGED
@@ -12,7 +12,7 @@ module.exports = function (api) {
12
12
  api.compatibleWith('quasar', '^2.0.0')
13
13
 
14
14
  if (api.hasVite) {
15
- api.compatibleWith('@quasar/app-vite', '^1.0.0 || ^2.0.0')
15
+ api.compatibleWith('@quasar/app-vite', '^1.0.0 || ^2.0.0 || ^2.0.0-beta.5')
16
16
  }
17
17
  else if (api.hasWebpack) {
18
18
  api.compatibleWith('@quasar/app-webpack', '^3.10.0 || ^4.0.0')