nero-env 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +7 -10
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -10,6 +10,13 @@ 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
+ <img
16
+ src="https://raw.githubusercontent.com/alcanivorax/nero-env/main/assets/nero-env-preview.png"
17
+ width="700"
18
+ />
19
+
13
20
  ## Installation
14
21
 
15
22
  ```bash
@@ -28,16 +35,6 @@ Check a specific project:
28
35
  nero-env --path ./apps/api
29
36
  ```
30
37
 
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
38
  ## What it checks
42
39
 
43
40
  - **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.0",
3
+ "version": "0.1.2",
4
4
  "description": "Validate and compare .env files",
5
5
  "bin": {
6
6
  "nero-env": "dist/index.js"
7
7
  },
8
- "files": ["dist"],
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": "ISC",
15
+ "license": "MIT",
15
16
  "packageManager": "pnpm@10.17.1",
16
17
  "devDependencies": {
17
18
  "@types/node": "^25.0.3",