@medusajs/admin-vite-plugin 2.11.2-snapshot-20251030153804 → 2.11.2-snapshot-20251030163249

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/dist/index.js CHANGED
@@ -28,11 +28,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
28
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
29
 
30
30
  // src/index.ts
31
- var index_exports = {};
32
- __export(index_exports, {
33
- default: () => index_default
31
+ var src_exports = {};
32
+ __export(src_exports, {
33
+ default: () => src_default
34
34
  });
35
- module.exports = __toCommonJS(index_exports);
35
+ module.exports = __toCommonJS(src_exports);
36
36
 
37
37
  // src/plugin.ts
38
38
  var import_promises11 = require("fs/promises");
@@ -2171,4 +2171,4 @@ var watcherConfigs = [
2171
2171
  ];
2172
2172
 
2173
2173
  // src/index.ts
2174
- var index_default = medusaVitePlugin;
2174
+ var src_default = medusaVitePlugin;
package/dist/index.mjs CHANGED
@@ -2169,7 +2169,7 @@ var watcherConfigs = [
2169
2169
  ];
2170
2170
 
2171
2171
  // src/index.ts
2172
- var index_default = medusaVitePlugin;
2172
+ var src_default = medusaVitePlugin;
2173
2173
  export {
2174
- index_default as default
2174
+ src_default as default
2175
2175
  };
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@medusajs/admin-vite-plugin",
3
- "version": "2.11.2-snapshot-20251030153804",
3
+ "version": "2.11.2-snapshot-20251030163249",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
8
8
  ".": {
9
- "types": "./dist/index.d.ts",
10
9
  "import": "./dist/index.mjs",
11
- "require": "./dist/index.js"
10
+ "require": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
12
  }
13
13
  },
14
14
  "repository": {
@@ -20,31 +20,32 @@
20
20
  "dist",
21
21
  "package.json"
22
22
  ],
23
+ "scripts": {
24
+ "build": "tsup",
25
+ "watch": "tsup --watch",
26
+ "test": "vitest --run",
27
+ "test:watch": "vitest"
28
+ },
23
29
  "devDependencies": {
24
- "@types/node": "^20.12.11",
25
- "tsup": "^8.4.0",
26
- "typescript": "^5.6.2",
30
+ "@types/node": "^20.10.4",
31
+ "tsup": "8.0.1",
32
+ "typescript": "5.3.3",
27
33
  "vite": "^5.4.14",
28
34
  "vitest": "^3.0.5"
29
35
  },
30
36
  "peerDependencies": {
31
- "vite": "^5.4.14"
37
+ "vite": "^5.0.0"
32
38
  },
33
39
  "dependencies": {
34
40
  "@babel/parser": "7.25.6",
35
41
  "@babel/traverse": "7.25.6",
36
42
  "@babel/types": "7.25.6",
37
- "@medusajs/admin-shared": "2.11.2-snapshot-20251030153804",
38
- "chokidar": "^3.5.3",
43
+ "@medusajs/admin-shared": "2.11.2-snapshot-20251030163249",
44
+ "chokidar": "3.5.3",
39
45
  "fdir": "6.1.1",
40
46
  "magic-string": "0.30.5",
41
47
  "outdent": "^0.8.0",
42
48
  "picocolors": "^1.1.0"
43
49
  },
44
- "scripts": {
45
- "build": "tsup",
46
- "watch": "tsup --watch",
47
- "test": "vitest --run",
48
- "test:watch": "vitest"
49
- }
50
- }
50
+ "packageManager": "yarn@3.2.1"
51
+ }