dowwntime 1.0.0 → 1.0.1
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.mjs +3 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/lib.d.mts +17 -1
- package/dist/lib.d.mts.map +1 -1
- package/dist/lib.mjs +2 -2
- package/dist/{src-DFBvkyj1.mjs → src-BToqwHxA.mjs} +51 -8
- package/dist/src-BToqwHxA.mjs.map +1 -0
- package/package.json +5 -4
- package/dist/src-DFBvkyj1.mjs.map +0 -1
package/dist/cli.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { a as __require, i as __commonJS, n as run, o as __toESM } from "./src-BToqwHxA.mjs";
|
|
2
3
|
import path from "path";
|
|
3
4
|
|
|
4
5
|
//#region node_modules/commander/lib/error.js
|
|
@@ -3027,7 +3028,7 @@ const { program, createCommand, createArgument, createOption, CommanderError, In
|
|
|
3027
3028
|
|
|
3028
3029
|
//#endregion
|
|
3029
3030
|
//#region src/cli.ts
|
|
3030
|
-
program.option("-c, --config [string]", "Path to config file", "
|
|
3031
|
+
program.option("-c, --config [string]", "Path to config file", "dowwntime.config.ts");
|
|
3031
3032
|
program.parse();
|
|
3032
3033
|
const configPath = program.opts().config;
|
|
3033
3034
|
const configModule = await import(path.resolve(process.cwd(), configPath));
|