@dsmrt/axiom-cli 0.2.2 → 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 +14 -0
- package/dist/bin/axiom.js +1 -1
- package/dist/bin/axiom.mjs +1 -1
- package/dist/{chunk-FKMXG4JE.mjs → chunk-XDVNYWAQ.mjs} +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
9
|
+
## 0.2.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [f23a8f2]
|
|
14
|
+
- Updated dependencies [f23a8f2]
|
|
15
|
+
- @dsmrt/axiom-config@0.2.2
|
|
16
|
+
|
|
3
17
|
## 0.2.2
|
|
4
18
|
|
|
5
19
|
### 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);
|
package/dist/bin/axiom.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import "../chunk-
|
|
2
|
+
import "../chunk-XDVNYWAQ.mjs";
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dsmrt/axiom-cli",
|
|
3
|
-
"version": "0.
|
|
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",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"inquirer": "^8.0.0",
|
|
53
53
|
"yargs": "^17.7.2",
|
|
54
54
|
"@dsmrt/axiom-aws-sdk": "^0.2.1",
|
|
55
|
-
"@dsmrt/axiom-config": "^0.2.
|
|
55
|
+
"@dsmrt/axiom-config": "^0.2.2"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"lint": "eslint ./src/ ./src/aws ./src/bin --ext .ts",
|