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.
Files changed (2) hide show
  1. package/dist/index.mjs +6 -3
  2. 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.0";
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(JSON.stringify(envData, null, 2));
3164
+ console.log(inspect(envData, {
3165
+ colors: true,
3166
+ depth: null
3167
+ }));
3165
3168
  Se("Dry-run complete");
3166
3169
  return;
3167
3170
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "e2sm",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "license": "MIT",
5
5
  "author": "mfyuu",
6
6
  "repository": {