configre 1.0.0 → 1.0.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/README.md +1 -1
- package/index.js +1 -2
- package/package.json +2 -11
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ Configre merges these configurations based on your environment, making your app
|
|
|
79
79
|
- **Clarity and Convenience**: Keep your configuration organized and easy to understand.
|
|
80
80
|
- **Flexibility**: Supports dynamic configuration values for complex setups.
|
|
81
81
|
|
|
82
|
-
## 🤝Contribute
|
|
82
|
+
## 🤝 Contribute
|
|
83
83
|
|
|
84
84
|
Found a bug or have a feature request? Contributions are welcome! Feel free to open an issue or submit a pull request.
|
|
85
85
|
|
package/index.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
const fs = require("fs");
|
|
2
2
|
const os = require("os");
|
|
3
3
|
const obj = require("lodash/object");
|
|
4
|
-
const
|
|
5
|
-
const log = new LemonLog("Configre");
|
|
4
|
+
const log = require("lemonlog")("Configre");
|
|
6
5
|
|
|
7
6
|
class ConfigreClass {
|
|
8
7
|
constructor(path) {
|
package/package.json
CHANGED
|
@@ -5,11 +5,8 @@
|
|
|
5
5
|
"lodash": "^4.17.21"
|
|
6
6
|
},
|
|
7
7
|
"description": "Welcome to Configre, the coolest way to manage your project's configuration with a twist of personality based on your environment! Whether you're in development, testing, or production, Configre seamlessly adjusts to your project's needs by loading specific configurations tailored to each environment. Say goodbye to manual config tweaks and hello to automatic, hassle-free setup! 🚀",
|
|
8
|
-
"version": "1.0.
|
|
8
|
+
"version": "1.0.2",
|
|
9
9
|
"main": "index.js",
|
|
10
|
-
"scripts": {
|
|
11
|
-
"test": "mocha"
|
|
12
|
-
},
|
|
13
10
|
"keywords": [
|
|
14
11
|
"json",
|
|
15
12
|
"config",
|
|
@@ -35,11 +32,5 @@
|
|
|
35
32
|
"bugs": {
|
|
36
33
|
"url": "https://github.com/clasen/Configre/issues"
|
|
37
34
|
},
|
|
38
|
-
"homepage": "https://github.com/clasen/Configre#readme"
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"mocha": "^10.2.0"
|
|
41
|
-
},
|
|
42
|
-
"directories": {
|
|
43
|
-
"test": "test"
|
|
44
|
-
}
|
|
35
|
+
"homepage": "https://github.com/clasen/Configre#readme"
|
|
45
36
|
}
|