@dotenvx/dotenvx 2.7.1 → 2.7.2

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
@@ -2,7 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- [Unreleased](https://github.com/dotenvx/dotenvx/compare/v2.7.1...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx/compare/v2.7.2...main)
6
+
7
+ ## [2.7.2](https://github.com/dotenvx/dotenvx/compare/v2.7.1...v2.7.2) (2026-07-13)
8
+
9
+ ### Added
10
+
11
+ * Include `dotenvx armor status` command.
6
12
 
7
13
  ## [2.7.1](https://github.com/dotenvx/dotenvx/compare/v2.7.0...v2.7.1) (2026-07-13)
8
14
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.7.1",
2
+ "version": "2.7.2",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a secure dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
@@ -0,0 +1,7 @@
1
+ const Session = require('../../../db/session')
2
+
3
+ function status () {
4
+ console.log(new Session().status())
5
+ }
6
+
7
+ module.exports = status
@@ -91,6 +91,14 @@ function configureArmorCommand (armor) {
91
91
  return require('./../actions/logout').apply(this, args)
92
92
  })
93
93
 
94
+ // dotenvx armor status
95
+ armor
96
+ .command('status')
97
+ .description('print armor status')
98
+ .action(function (...args) {
99
+ return require('./../actions/armor/status').apply(this, args)
100
+ })
101
+
94
102
  // dotenvx armor settings
95
103
  require('./settings')(armor.command('settings'))
96
104