quickbooks-medusa-plugin 0.0.7 → 0.0.8

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": "quickbooks-medusa-plugin",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Medusa v2 plugin for QuickBooks Online bi-directional sync (Customers, Products, Orders, Inventory).",
5
5
  "author": "bootssecurity",
6
6
  "license": "MIT",
@@ -16,9 +16,11 @@
16
16
  "./providers/*": "./.medusa/server/src/providers/*/index.js",
17
17
  "./*": "./.medusa/server/src/*.js",
18
18
  "./admin": {
19
- "import": "./.medusa/server/src/admin/index.js",
20
- "require": "./.medusa/server/src/admin/index.js",
21
- "default": "./.medusa/server/src/admin/index.js"
19
+ "./admin": {
20
+ "import": "./.medusa/server/src/admin/index.mjs",
21
+ "require": "./.medusa/server/src/admin/index.mjs",
22
+ "default": "./.medusa/server/src/admin/index.mjs"
23
+ }
22
24
  }
23
25
  },
24
26
  "keywords": [
@@ -31,7 +33,7 @@
31
33
  "intuit"
32
34
  ],
33
35
  "scripts": {
34
- "build": "medusa plugin:build && tsc --project src/admin/tsconfig.json",
36
+ "build": "medusa plugin:build && tsc --project src/admin/tsconfig.json && mv .medusa/server/src/admin/index.js .medusa/server/src/admin/index.mjs",
35
37
  "dev": "medusa plugin:develop",
36
38
  "prepublishOnly": "npm run build"
37
39
  },
@@ -1,5 +0,0 @@
1
- // Medusa Admin Extension Entry Point
2
- // Must export 'widgets' and 'default' to be valid for the dashboard loader.
3
- export const widgets = [];
4
- const plugin = { widgets };
5
- export default plugin;