@dsmrt/axiom-cli 0.2.3 → 0.3.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @dsmrt/axiom-cli
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9d383de: Updating the cli config command to print json
8
+
3
9
  ## 0.2.3
4
10
 
5
11
  ### Patch Changes
package/dist/bin/axiom.js CHANGED
@@ -38,7 +38,7 @@ var Config = class {
38
38
  return args;
39
39
  };
40
40
  handler = async (args) => {
41
- console.log(await this.loadConfig(args));
41
+ console.log(JSON.stringify(await this.loadConfig(args)));
42
42
  };
43
43
  loadConfig = async (args) => {
44
44
  return (0, import_axiom_config.loadConfig)(args);
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- import "../chunk-FKMXG4JE.mjs";
2
+ import "../chunk-XDVNYWAQ.mjs";
@@ -13,7 +13,7 @@ var Config = class {
13
13
  return args;
14
14
  };
15
15
  handler = async (args) => {
16
- console.log(await this.loadConfig(args));
16
+ console.log(JSON.stringify(await this.loadConfig(args)));
17
17
  };
18
18
  loadConfig = async (args) => {
19
19
  return loadConfig(args);
package/dist/index.js CHANGED
@@ -130,7 +130,7 @@ var Config = class {
130
130
  return args;
131
131
  };
132
132
  handler = async (args) => {
133
- console.log(await this.loadConfig(args));
133
+ console.log(JSON.stringify(await this.loadConfig(args)));
134
134
  };
135
135
  loadConfig = async (args) => {
136
136
  return (0, import_axiom_config.loadConfig)(args);
package/dist/index.mjs CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  SetCommand,
7
7
  awsOptions,
8
8
  commonOptions
9
- } from "./chunk-FKMXG4JE.mjs";
9
+ } from "./chunk-XDVNYWAQ.mjs";
10
10
  export {
11
11
  Config,
12
12
  DeleteCommand,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsmrt/axiom-cli",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "axiom cli for managing configs including secrets",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",