vite-node 0.20.1 → 0.20.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/dist/cli.cjs +1 -1
- package/dist/cli.mjs +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -629,7 +629,7 @@ class CAC extends events.EventEmitter {
|
|
|
629
629
|
|
|
630
630
|
const cac = (name = "") => new CAC(name);
|
|
631
631
|
|
|
632
|
-
var version = "0.20.
|
|
632
|
+
var version = "0.20.2";
|
|
633
633
|
|
|
634
634
|
const cli = cac("vite-node");
|
|
635
635
|
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
|
@@ -627,7 +627,7 @@ class CAC extends EventEmitter {
|
|
|
627
627
|
|
|
628
628
|
const cac = (name = "") => new CAC(name);
|
|
629
629
|
|
|
630
|
-
var version = "0.20.
|
|
630
|
+
var version = "0.20.2";
|
|
631
631
|
|
|
632
632
|
const cli = cac("vite-node");
|
|
633
633
|
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();
|