@dotenvx/dotenvx-ops 0.37.0 → 0.37.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 +7 -1
- package/package.json +1 -1
- package/src/cli/postinstall.js +1 -2
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.37.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.37.1...main)
|
|
6
|
+
|
|
7
|
+
## [0.37.1](https://github.com/dotenvx/dotenvx-ops/compare/v0.37.0...v0.37.1) (2026-03-26)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Fix display of version on install.sh script output
|
|
6
12
|
|
|
7
13
|
## [0.37.0](https://github.com/dotenvx/dotenvx-ops/compare/v0.36.1...v0.37.0) (2026-03-26)
|
|
8
14
|
|
package/package.json
CHANGED
package/src/cli/postinstall.js
CHANGED
|
@@ -12,6 +12,5 @@ if (isGlobalInstall && process.env.npm_config_prefix) {
|
|
|
12
12
|
: path.join(process.env.npm_config_prefix, 'bin', binaryName)
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
console.log(`⛨ installed (${packageJson.version}
|
|
16
|
-
console.log('')
|
|
15
|
+
console.log(`⛨ installed (${packageJson.version}:${installPath})`)
|
|
17
16
|
console.log('⮕ next run [dotenvx-ops login] and then [dotenvx encrypt]')
|