@safe-hand/safe-env-check 1.1.5 → 1.1.6
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 +11 -0
- package/dist/cli/index.js +1 -1
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|

|
|
4
4
|

|
|
5
5
|

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
6
9
|
|
|
7
10
|
A tiny TypeScript-first environment variable validator that ensures your application starts with a correct configuration.
|
|
8
11
|
|
|
@@ -389,6 +392,14 @@ env.NODE_ENV; // "development" | "production"
|
|
|
389
392
|
- Monorepos
|
|
390
393
|
- Multi-environment deployments
|
|
391
394
|
|
|
395
|
+
## Contributing
|
|
396
|
+
|
|
397
|
+
Contributions are welcome! Please open an issue or PR.
|
|
398
|
+
|
|
399
|
+
## Changelog
|
|
400
|
+
|
|
401
|
+
See https://github.com/yourname/safe-env-check/releases
|
|
402
|
+
|
|
392
403
|
## License
|
|
393
404
|
|
|
394
405
|
MIT © Shakhawat Hossain
|
package/dist/cli/index.js
CHANGED
|
@@ -427,7 +427,7 @@ var import_path = __toESM(require("path"));
|
|
|
427
427
|
var import_fs2 = __toESM(require("fs"));
|
|
428
428
|
|
|
429
429
|
// package.json
|
|
430
|
-
var version = "1.1.
|
|
430
|
+
var version = "1.1.6";
|
|
431
431
|
|
|
432
432
|
// src/cli/argsParser.ts
|
|
433
433
|
var valueFlags = /* @__PURE__ */ new Set(["--schema", "--env-file", "--prefix", "--format"]);
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@safe-hand/safe-env-check",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/shshamim63/safe-env-check.git"
|
|
7
7
|
},
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/shshamim63/safe-env-check/issues"
|
|
10
|
+
},
|
|
8
11
|
"keywords": [
|
|
9
12
|
"env",
|
|
10
13
|
"env-validation",
|
|
@@ -31,9 +34,9 @@
|
|
|
31
34
|
"test": "jest",
|
|
32
35
|
"lint": "tsc --noEmit"
|
|
33
36
|
},
|
|
34
|
-
"author": "",
|
|
37
|
+
"author": "Shakhawat Hossain",
|
|
35
38
|
"license": "MIT",
|
|
36
|
-
"description": "",
|
|
39
|
+
"description": "TypeScript-first environment variable validator with CLI support",
|
|
37
40
|
"devDependencies": {
|
|
38
41
|
"@types/jest": "^30.0.0",
|
|
39
42
|
"@types/node": "^25.2.3",
|