@h3ravel/config 1.0.1 → 1.0.3
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 +20 -0
- package/README.md +2 -0
- package/package.json +14 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @h3ravel/config
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: add download count to readme
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @h3ravel/core@1.0.3
|
|
10
|
+
- @h3ravel/shared@0.7.1
|
|
11
|
+
- @h3ravel/support@0.7.1
|
|
12
|
+
|
|
13
|
+
## 1.0.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [b0d1b7c]
|
|
18
|
+
- Updated dependencies [ce51a92]
|
|
19
|
+
- @h3ravel/support@0.7.0
|
|
20
|
+
- @h3ravel/shared@0.7.0
|
|
21
|
+
- @h3ravel/core@1.0.2
|
|
22
|
+
|
|
3
23
|
## 1.0.0
|
|
4
24
|
|
|
5
25
|
### Major Changes
|
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[![Framework][ix]][lx]
|
|
4
4
|
[![Config Package Version][i1]][l1]
|
|
5
|
+
[![Downloads][d1]][d1]
|
|
5
6
|
|
|
6
7
|
# About H3ravel/config
|
|
7
8
|
|
|
@@ -27,3 +28,4 @@ The H3ravel framework is open-sourced software licensed under the [MIT license](
|
|
|
27
28
|
[lx]: https://www.npmjs.com/package/@h3ravel/core
|
|
28
29
|
[i1]: https://img.shields.io/npm/v/%40h3ravel%2Fconfig?style=flat-square&label=@h3ravel/config&color=%230970ce
|
|
29
30
|
[l1]: https://www.npmjs.com/package/@h3ravel/config
|
|
31
|
+
[d1]: https://img.shields.io/npm/dt/%40h3ravel%2Fconfig?style=flat-square&label=Downloads&link=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2F%40h3ravel%2Fconfig
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Environment/config loading and management system for H3ravel.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,6 +8,16 @@
|
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"h3ravel",
|
|
13
|
+
"modern",
|
|
14
|
+
"web",
|
|
15
|
+
"H3",
|
|
16
|
+
"framework",
|
|
17
|
+
"nodejs",
|
|
18
|
+
"typescript",
|
|
19
|
+
"laravel"
|
|
20
|
+
],
|
|
11
21
|
"exports": {
|
|
12
22
|
".": {
|
|
13
23
|
"import": "./dist/index.js",
|
|
@@ -15,9 +25,9 @@
|
|
|
15
25
|
}
|
|
16
26
|
},
|
|
17
27
|
"dependencies": {
|
|
18
|
-
"@h3ravel/core": "1.0.
|
|
19
|
-
"@h3ravel/
|
|
20
|
-
"@h3ravel/
|
|
28
|
+
"@h3ravel/core": "1.0.3",
|
|
29
|
+
"@h3ravel/support": "0.7.1",
|
|
30
|
+
"@h3ravel/shared": "0.7.1"
|
|
21
31
|
},
|
|
22
32
|
"devDependencies": {
|
|
23
33
|
"typescript": "^5.4.0",
|