@dotenvx/dotenvx 1.41.0 → 1.42.0
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 +6 -2
- 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.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.42.0...main)
|
|
6
|
+
|
|
7
|
+
## [1.42.0](https://github.com/dotenvx/dotenvx/compare/v1.41.0...v1.42.0)
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
* Add ability to override the `os` and `arch` via `install.sh` and `dotenvx.sh` ([3ded752](https://github.com/dotenvx/dotenvx/commit/3ded752fbe60aa4eeebe9fe90a87f35dba502a76))
|
|
6
12
|
|
|
7
13
|
## [1.41.0](https://github.com/dotenvx/dotenvx/compare/v1.40.1...v1.41.0)
|
|
8
14
|
|
package/README.md
CHANGED
|
@@ -2085,8 +2085,12 @@ CLI extensions.
|
|
|
2085
2085
|
Prevent `.env` files from being committed to code inside a specified path to a directory.
|
|
2086
2086
|
|
|
2087
2087
|
```sh
|
|
2088
|
+
$ echo "HELLO=World" > .env
|
|
2089
|
+
$ mkdir -p apps/backend
|
|
2090
|
+
$ echo "HELLO=Backend" > apps/backend/.env
|
|
2091
|
+
|
|
2088
2092
|
$ dotenvx ext precommit apps/backend
|
|
2089
|
-
[dotenvx][precommit]
|
|
2093
|
+
[dotenvx][precommit] apps/backend/.env not protected (encrypted or gitignored)
|
|
2090
2094
|
```
|
|
2091
2095
|
|
|
2092
2096
|
</details>
|
|
@@ -2120,7 +2124,7 @@ CLI extensions.
|
|
|
2120
2124
|
...
|
|
2121
2125
|
|
|
2122
2126
|
RUN dotenvx ext prebuild apps/backend
|
|
2123
|
-
CMD ["dotenvx", "run", "--", "node", "index.js"]
|
|
2127
|
+
CMD ["dotenvx", "run", "--", "node", "apps/backend/index.js"]
|
|
2124
2128
|
```
|
|
2125
2129
|
|
|
2126
2130
|
</details>
|
package/package.json
CHANGED