vite-node 0.25.2 → 0.25.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/dist/cli.cjs CHANGED
@@ -632,7 +632,7 @@ class CAC extends events.EventEmitter {
632
632
 
633
633
  const cac = (name = "") => new CAC(name);
634
634
 
635
- var version = "0.25.2";
635
+ var version = "0.25.3";
636
636
 
637
637
  const cli = cac("vite-node");
638
638
  cli.version(version).option("-r, --root <path>", "Use specified root directory").option("-c, --config <path>", "Use specified config file").option("-w, --watch", 'Restart on file changes, similar to "nodemon"').option("--options <options>", "Use specified Vite server options").help();
package/dist/cli.mjs CHANGED
@@ -630,7 +630,7 @@ class CAC extends EventEmitter {
630
630
 
631
631
  const cac = (name = "") => new CAC(name);
632
632
 
633
- var version = "0.25.2";
633
+ var version = "0.25.3";
634
634
 
635
635
  const cli = cac("vite-node");
636
636
  cli.version(version).option("-r, --root <path>", "Use specified root directory").option("-c, --config <path>", "Use specified config file").option("-w, --watch", 'Restart on file changes, similar to "nodemon"').option("--options <options>", "Use specified Vite server options").help();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-node",
3
- "version": "0.25.2",
3
+ "version": "0.25.3",
4
4
  "description": "Vite as Node.js runtime",
5
5
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
6
6
  "license": "MIT",
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "debug": "^4.3.4",
73
- "mlly": "^0.5.16",
73
+ "mlly": "^1.0.0",
74
74
  "pathe": "^0.2.0",
75
75
  "source-map": "^0.6.1",
76
76
  "source-map-support": "^0.5.21",
@@ -86,7 +86,7 @@
86
86
  },
87
87
  "scripts": {
88
88
  "build": "rimraf dist && rollup -c",
89
- "dev": "rollup -c --watch --watch.include=src/** -m inline",
89
+ "dev": "rollup -c --watch --watch.include=src -m inline",
90
90
  "typecheck": "tsc --noEmit"
91
91
  }
92
92
  }