e2sm 0.2.0 → 0.2.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/index.mjs +6 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { stripVTControlCharacters } from "node:util";
|
|
2
|
+
import { inspect, stripVTControlCharacters } from "node:util";
|
|
3
3
|
import y, { stdin, stdout } from "node:process";
|
|
4
4
|
import * as g from "node:readline";
|
|
5
5
|
import O from "node:readline";
|
|
@@ -3013,7 +3013,7 @@ BUILT_IN_PREFIX.codePointAt(0);
|
|
|
3013
3013
|
|
|
3014
3014
|
//#endregion
|
|
3015
3015
|
//#region package.json
|
|
3016
|
-
var version = "0.2.
|
|
3016
|
+
var version = "0.2.1";
|
|
3017
3017
|
|
|
3018
3018
|
//#endregion
|
|
3019
3019
|
//#region src/lib.ts
|
|
@@ -3161,7 +3161,10 @@ const command = define({
|
|
|
3161
3161
|
const jsonString = JSON.stringify(envData);
|
|
3162
3162
|
if (isDryRun) {
|
|
3163
3163
|
M.info("Dry-run mode: Previewing JSON output");
|
|
3164
|
-
console.log(
|
|
3164
|
+
console.log(inspect(envData, {
|
|
3165
|
+
colors: true,
|
|
3166
|
+
depth: null
|
|
3167
|
+
}));
|
|
3165
3168
|
Se("Dry-run complete");
|
|
3166
3169
|
return;
|
|
3167
3170
|
}
|