@dsmrt/axiom-cli 0.1.1 → 0.2.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,23 @@
1
1
  # @dsmrt/axiom-cli
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7aa81f2: fixing issues with publishing the package with changesets
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [7aa81f2]
12
+ - @dsmrt/axiom-aws-sdk@0.2.0
13
+ - @dsmrt/axiom-config@0.2.0
14
+
15
+ ## 0.1.2
16
+
17
+ ### Patch Changes
18
+
19
+ - a21ce35: Update the cli docs and attempt to fix issues with changesets
20
+
3
21
  ## 0.1.1
4
22
 
5
23
  ### Patch Changes
package/dist/bin/axiom.js CHANGED
@@ -221,11 +221,11 @@ var GetCommand = class {
221
221
  args.positional("path", {
222
222
  type: "string",
223
223
  describe: `OPTIONAL path to parameter. Supports absolute and relative paths.
224
- Example: "/root/myParam" or "service/secret" (which translates to, "${buildPath(
224
+ Example:
225
+ "/root/myParam" or "service/secret" (which translates to, "${buildPath(
225
226
  config,
226
227
  "service/secret"
227
228
  )})`
228
- // default: config.awsSsmParameterPath,
229
229
  });
230
230
  return args;
231
231
  };
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- import "../chunk-D4DGV6KK.mjs";
2
+ import "../chunk-FKMXG4JE.mjs";
@@ -199,11 +199,11 @@ var GetCommand = class {
199
199
  args.positional("path", {
200
200
  type: "string",
201
201
  describe: `OPTIONAL path to parameter. Supports absolute and relative paths.
202
- Example: "/root/myParam" or "service/secret" (which translates to, "${buildPath(
202
+ Example:
203
+ "/root/myParam" or "service/secret" (which translates to, "${buildPath(
203
204
  config,
204
205
  "service/secret"
205
206
  )})`
206
- // default: config.awsSsmParameterPath,
207
207
  });
208
208
  return args;
209
209
  };
package/dist/index.js CHANGED
@@ -233,11 +233,11 @@ var GetCommand = class {
233
233
  args.positional("path", {
234
234
  type: "string",
235
235
  describe: `OPTIONAL path to parameter. Supports absolute and relative paths.
236
- Example: "/root/myParam" or "service/secret" (which translates to, "${buildPath(
236
+ Example:
237
+ "/root/myParam" or "service/secret" (which translates to, "${buildPath(
237
238
  config,
238
239
  "service/secret"
239
240
  )})`
240
- // default: config.awsSsmParameterPath,
241
241
  });
242
242
  return args;
243
243
  };
package/dist/index.mjs CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  SetCommand,
7
7
  awsOptions,
8
8
  commonOptions
9
- } from "./chunk-D4DGV6KK.mjs";
9
+ } from "./chunk-FKMXG4JE.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.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "axiom cli for managing configs including secrets",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -34,14 +34,14 @@
34
34
  "@types/yargs": "^17.0.31",
35
35
  "@typescript-eslint/eslint-plugin": "^6.12.0",
36
36
  "@typescript-eslint/parser": "^6.12.0",
37
- "@vitest/coverage-v8": "^0.34.6",
38
37
  "aws-sdk-client-mock": "^3.0.0",
39
38
  "eslint": "^8.54.0",
40
39
  "prettier": "^3.1.0",
41
40
  "ts-node": "^10.9.1",
42
41
  "tsup": "^8.0.1",
43
42
  "typescript": "^5.2.2",
44
- "vitest": "^0.34.6"
43
+ "@vitest/coverage-v8": "^1.2.1",
44
+ "vitest": "^1.2.1"
45
45
  },
46
46
  "dependencies": {
47
47
  "@aws-sdk/client-ssm": "^3.451.0",
@@ -51,8 +51,8 @@
51
51
  "chalk": "^4.1.2",
52
52
  "inquirer": "^8.0.0",
53
53
  "yargs": "^17.7.2",
54
- "@dsmrt/axiom-aws-sdk": "^0.1.1",
55
- "@dsmrt/axiom-config": "^0.1.1"
54
+ "@dsmrt/axiom-aws-sdk": "^0.2.0",
55
+ "@dsmrt/axiom-config": "^0.2.0"
56
56
  },
57
57
  "scripts": {
58
58
  "lint": "eslint ./src/ ./src/aws ./src/bin --ext .ts",