@mimik/configuration 6.0.3 → 6.0.4

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 (3) hide show
  1. package/README.md +2 -0
  2. package/index.js +2 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
  **Example**
5
5
  ```js
6
6
  import config from '@mimik/configuration';
7
+ or
8
+ import { setConfig, isProd } from '@mimik/configuration';
7
9
  ```
8
10
 
9
11
  * [configuration](#module_configuration)
package/index.js CHANGED
@@ -107,6 +107,8 @@ const ISSUE_EXIT = 1;
107
107
  * @module configuration
108
108
  * @example
109
109
  * import config from '@mimik/configuration';
110
+ * or
111
+ * import { setConfig, isProd } from '@mimik/configuration';
110
112
  */
111
113
 
112
114
  let display = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mimik/configuration",
3
- "version": "6.0.3",
3
+ "version": "6.0.4",
4
4
  "description": "Common configuration for mimik services",
5
5
  "main": "./index.js",
6
6
  "type": "module",