predeploy-check 1.1.0 → 1.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 +22 -0
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -79,5 +79,27 @@ module.exports = { name, run };
|
|
|
79
79
|
|
|
80
80
|
Checks are loaded alphabetically, so prefix with a number to control order.
|
|
81
81
|
|
|
82
|
+
## Testing
|
|
83
|
+
|
|
84
|
+
The project has a full test suite (49 tests covering all 6 checks) built
|
|
85
|
+
on Node's built-in test runner — no extra dependencies needed.
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
npm test
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## Contributing
|
|
92
|
+
|
|
93
|
+
Found a deploy-only failure that isn't on this list? Open an issue or a
|
|
94
|
+
PR — the project is intentionally narrow right now (six checks), and it
|
|
95
|
+
gets more useful with every real-world gotcha someone adds.
|
|
96
|
+
|
|
97
|
+
## Author
|
|
98
|
+
|
|
99
|
+
Built by [Alok Kushwaha](https://github.com/Alok-Fusion) — NLP/ML
|
|
100
|
+
engineer, born out of a real afternoon lost to a deploy failure that
|
|
101
|
+
had nothing to do with the actual code.
|
|
102
|
+
|
|
82
103
|
## License
|
|
83
104
|
|
|
105
|
+
MIT — see [LICENSE](./LICENSE) for details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "predeploy-check",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Scan a project folder and flag known deployment-failure patterns for Render and Vercel before you push.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -20,8 +20,16 @@
|
|
|
20
20
|
"deployment",
|
|
21
21
|
"check"
|
|
22
22
|
],
|
|
23
|
-
"author": "",
|
|
23
|
+
"author": "Alok Kushwaha (https://github.com/Alok-Fusion)",
|
|
24
24
|
"license": "MIT",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/Alok-Fusion/predeploy_check.git"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/Alok-Fusion/predeploy_check#readme",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/Alok-Fusion/predeploy_check/issues"
|
|
32
|
+
},
|
|
25
33
|
"dependencies": {
|
|
26
34
|
"chalk": "^4.1.2"
|
|
27
35
|
},
|