quasar-app-extension-sellmate-ui-kit 3.0.0 → 3.0.2

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.0.0",
3
+ "version": "3.0.2",
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.0.0"
15
+ "quasar-ui-sellmate-ui-kit": "^3.0.2"
16
16
  },
17
17
  "engines": {
18
18
  "node": ">= 8.9.0",
package/src/install.js CHANGED
@@ -4,7 +4,8 @@
4
4
  * Docs: https://quasar.dev/app-extensions/development-guide/install-api
5
5
  */
6
6
 
7
- export default function (api) {
7
+
8
+ module.exports = function (api) {
8
9
  // Quasar compatibility check; you may need
9
10
  // hard dependencies, as in a minimum version of the "quasar"
10
11
  // package or a minimum version of "@quasar/app-*" CLI
package/src/prompts.js CHANGED
@@ -39,6 +39,6 @@
39
39
 
40
40
  */
41
41
 
42
- export default function (api) {
42
+ module.exports = function (api) {
43
43
  return []
44
44
  }
package/src/uninstall.js CHANGED
@@ -39,6 +39,6 @@
39
39
 
40
40
  */
41
41
 
42
- export default function (api) {
43
- return []
44
- }
42
+ module.exports = function (api) {
43
+ return []
44
+ }