@dotenvx/dotenvx-ops 0.36.0 → 0.36.1

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-ops/compare/v0.36.0...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.36.1...main)
6
+
7
+ ## [0.36.1](https://github.com/dotenvx/dotenvx-ops/compare/v0.36.0...v0.36.1) (2026-03-13)
8
+
9
+ ### Added
10
+
11
+ * Add on/off help ([#30](https://github.com/dotenvx/dotenvx-ops/pull/30))
6
12
 
7
13
  ## [0.36.0](https://github.com/dotenvx/dotenvx-ops/compare/v0.35.1...v0.36.0) (2026-03-13)
8
14
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.36.0",
2
+ "version": "0.36.1",
3
3
  "name": "@dotenvx/dotenvx-ops",
4
4
  "description": "KEYS OFF COMPUTER by dotenvx",
5
5
  "author": "@motdotla",
@@ -6,7 +6,8 @@ function off () {
6
6
  try {
7
7
  const sesh = new Session()
8
8
  sesh.turnOff()
9
- console.log('ops: off')
9
+ logger.success('ops: off')
10
+ logger.help('⮕ check status with [dotenvx-ops status]')
10
11
  } catch (error) {
11
12
  logger.error(error.message)
12
13
  process.exit(1)
@@ -6,7 +6,8 @@ function on () {
6
6
  try {
7
7
  const sesh = new Session()
8
8
  sesh.turnOn()
9
- console.log('ops: on')
9
+ logger.success('ops: on')
10
+ logger.help('⮕ check status with [dotenvx-ops status]')
10
11
  } catch (error) {
11
12
  logger.error(error.message)
12
13
  process.exit(1)