@dotenvx/dotenvx 1.13.1 → 1.13.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 +7 -1
- package/package.json +1 -1
- package/src/lib/main.js +8 -3
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/v1.13.
|
|
5
|
+
## [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.13.2...main)
|
|
6
|
+
|
|
7
|
+
## 1.13.2
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
* expose `getColor` and `bold` to `lib/main.js` ([#369](https://github.com/dotenvx/dotenvx/pull/369))
|
|
6
12
|
|
|
7
13
|
## 1.13.1
|
|
8
14
|
|
package/package.json
CHANGED
package/src/lib/main.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
// @ts-check
|
|
2
2
|
const path = require('path')
|
|
3
|
-
const { setLogLevel, logger } = require('./../shared/logger')
|
|
4
3
|
const dotenv = require('dotenv')
|
|
5
4
|
|
|
5
|
+
// shared
|
|
6
|
+
const { setLogLevel, logger } = require('./../shared/logger')
|
|
7
|
+
const { getColor, bold } = require('./../shared/colors')
|
|
8
|
+
|
|
6
9
|
// services
|
|
7
10
|
const Ls = require('./services/ls')
|
|
8
11
|
const Get = require('./services/get')
|
|
@@ -219,7 +222,9 @@ module.exports = {
|
|
|
219
222
|
get,
|
|
220
223
|
set,
|
|
221
224
|
genexample,
|
|
222
|
-
// expose for libs depending on @dotenvx/dotenvx
|
|
225
|
+
// expose for libs depending on @dotenvx/dotenvx - like dotenvx-pro
|
|
223
226
|
setLogLevel,
|
|
224
|
-
logger
|
|
227
|
+
logger,
|
|
228
|
+
getColor,
|
|
229
|
+
bold
|
|
225
230
|
}
|