@dsmrt/axiom-cli 0.0.5 → 0.0.8-alpha.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.
Files changed (2) hide show
  1. package/README.md +37 -0
  2. package/package.json +5 -4
package/README.md ADDED
@@ -0,0 +1,37 @@
1
+ <picture>
2
+ <source media="(prefers-color-scheme: dark)" srcset="../images/axiom-dark-mode.svg">
3
+ <source media="(prefers-color-scheme: light)" srcset="../images/axiom-light-mode.svg">
4
+ <img alt="Axiom logo" src="./images/axiom-light-mode.svg">
5
+ </picture>
6
+
7
+ # Axiom - CLI
8
+
9
+ > An AWS focused config manager
10
+
11
+ ## Features
12
+ - Multiple environments/accounts/regions
13
+ - Secrets with SSM Parameters
14
+
15
+ ## Getting Started
16
+
17
+ ### Install the CLI
18
+
19
+ ```bash
20
+ npm install @dsmrt/axiom-cli
21
+ ```
22
+
23
+ ### CLI Usage
24
+
25
+ #### Features
26
+ - View rendered configs
27
+ - Manage SSM Parameters
28
+
29
+ ```
30
+ axiom --help
31
+ ```
32
+
33
+ ## Acknowledgements
34
+
35
+ - [Nate Iler](https://github.com/nateiler)
36
+ - [Flipbox Digital](https://www.flipboxdigital.com)
37
+ - [Go Mondo](https://www.flipboxdigital.com)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsmrt/axiom-cli",
3
- "version": "0.0.5",
3
+ "version": "0.0.8-alpha.0",
4
4
  "description": "axiom cli for managing configs including secrets",
5
5
  "main": "lib/bin/axiom.js",
6
6
  "types": "lib/index.d.ts",
@@ -48,14 +48,15 @@
48
48
  "chalk": "^4.1.2",
49
49
  "inquirer": "^8.0.0",
50
50
  "yargs": "^17.7.2",
51
- "@dsmrt/axiom-aws-sdk": "^0.0.5",
52
- "@dsmrt/axiom-config": "^0.0.5"
51
+ "@dsmrt/axiom-aws-sdk": "^0.0.8-alpha.0",
52
+ "@dsmrt/axiom-config": "^0.0.8-alpha.0"
53
53
  },
54
54
  "scripts": {
55
55
  "lint": "eslint ./src/ --ext .ts",
56
56
  "lint:fix": "eslint ./src/ --ext .ts --fix",
57
57
  "test": "vitest run --coverage",
58
58
  "watch": "vitest watch --coverage",
59
- "build": "tsc -d -p ./tsconfig.json"
59
+ "build": "tsc -d -p ./tsconfig.json",
60
+ "version:patch": "pnpm version patch"
60
61
  }
61
62
  }