nero-env 0.1.0 → 0.1.1
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 +4 -10
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -10,6 +10,10 @@ nero-env compares your active .env file with .env.example and reports:
|
|
|
10
10
|
|
|
11
11
|
Clear output. No configuration. Safe by default.
|
|
12
12
|
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+
|
|
13
17
|
## Installation
|
|
14
18
|
|
|
15
19
|
```bash
|
|
@@ -28,16 +32,6 @@ Check a specific project:
|
|
|
28
32
|
nero-env --path ./apps/api
|
|
29
33
|
```
|
|
30
34
|
|
|
31
|
-
<!-- Fail on issues (useful for CI):
|
|
32
|
-
```bash
|
|
33
|
-
nero-env --strict
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
Use a specific env file:
|
|
37
|
-
```bash
|
|
38
|
-
nero-env --env development
|
|
39
|
-
``` -->
|
|
40
|
-
|
|
41
35
|
## What it checks
|
|
42
36
|
|
|
43
37
|
- **Missing** → defined in .env.example but not in .env
|
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nero-env",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Validate and compare .env files",
|
|
5
5
|
"bin": {
|
|
6
6
|
"nero-env": "dist/index.js"
|
|
7
7
|
},
|
|
8
|
-
"files": [
|
|
9
|
-
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
10
11
|
"scripts": {
|
|
11
12
|
"build": "tsc",
|
|
12
13
|
"dev": "ts-node src/index.ts"
|
|
13
14
|
},
|
|
14
|
-
"license": "
|
|
15
|
+
"license": "MIT",
|
|
15
16
|
"packageManager": "pnpm@10.17.1",
|
|
16
17
|
"devDependencies": {
|
|
17
18
|
"@types/node": "^25.0.3",
|