@dotenvx/dotenvx 1.10.2 β 1.10.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 +7 -1
- package/README.md +14 -8
- package/package.json +1 -1
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.10.
|
|
5
|
+
## [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.10.3...main)
|
|
6
|
+
|
|
7
|
+
## 1.10.3
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
* ci: automate publishing to `winget` ([#354](https://github.com/dotenvx/dotenvx/pull/354))
|
|
6
12
|
|
|
7
13
|
## 1.10.2
|
|
8
14
|
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
### Quickstart [](https://www.npmjs.com/package/@dotenvx/dotenvx) [](https://www.npmjs.com/package/@dotenvx/dotenvx) [](https://www.npmjs.com/package/@dotenvx/dotenvx) [](https://github.com/dotenvx/dotenvx/tree/main/tests)
|
|
13
13
|
|
|
14
14
|
Install and use it in code just like `dotenv`.
|
|
15
15
|
|
|
@@ -34,10 +34,7 @@ curl -sfS https://dotenvx.sh | sh
|
|
|
34
34
|
dotenvx help
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
[](https://github.com/dotenvx/dotenvx.sh/blob/main/install.sh)
|
|
39
|
-
[](https://github.com/dotenvx/dotenvx.sh/blob/main/install.sh)
|
|
40
|
-
<sup>*curl installs sourced from npm binary packages - <a href="https://www.npmjs.com/package/@dotenvx/dotenvx-linux-x86_64">example</a></sup>
|
|
37
|
+
[](https://github.com/dotenvx/dotenvx.sh/blob/main/install.sh)
|
|
41
38
|
|
|
42
39
|
|
|
43
40
|
|
|
@@ -51,7 +48,6 @@ dotenvx help
|
|
|
51
48
|
```
|
|
52
49
|
|
|
53
50
|
[](https://github.com/dotenvx/homebrew-brew/blob/main/Formula/dotenvx.rb)
|
|
54
|
-
<sup>*homebrew installs sourced from github releases - <a href="https://github.com/dotenvx/homebrew-brew/blob/main/Formula/dotenvx.rb">formula</a></sup>
|
|
55
51
|
|
|
56
52
|
|
|
57
53
|
|
|
@@ -69,7 +65,7 @@ docker run -it --rm -v $(pwd):/app dotenv/dotenvx help
|
|
|
69
65
|
|
|
70
66
|
</details>
|
|
71
67
|
|
|
72
|
-
<details><summary>
|
|
68
|
+
<details><summary>with github releases π</summary><br>
|
|
73
69
|
|
|
74
70
|
```sh
|
|
75
71
|
curl -L -o dotenvx.tar.gz "https://github.com/dotenvx/dotenvx/releases/latest/download/dotenvx-$(uname -s)-$(uname -m).tar.gz"
|
|
@@ -78,11 +74,21 @@ tar -xzf dotenvx.tar.gz
|
|
|
78
74
|
```
|
|
79
75
|
|
|
80
76
|
[](https://github.com/dotenvx/dotenvx/releases)
|
|
81
|
-
|
|
77
|
+
|
|
78
|
+
|
|
82
79
|
|
|
83
80
|
</details>
|
|
84
81
|
|
|
85
82
|
|
|
83
|
+
<details><summary>or with windows π¦π©π₯π¨</summary><br>
|
|
84
|
+
|
|
85
|
+
```sh
|
|
86
|
+
winget install dotenvx
|
|
87
|
+
dotenvx help
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
</details>
|
|
91
|
+
|
|
86
92
|
|
|
87
93
|
|
|
88
94
|
## Run Anywhere
|
package/package.json
CHANGED