@cleartrip/frontguard 0.3.6 → 1.0.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/README.md +221 -193
- package/dist/cli.js +600 -530
- package/dist/cli.js.map +1 -1
- package/package.json +11 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cleartrip/frontguard",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Frontend PR guardrails — lint, type safety, secrets, bundle size, PR hygiene, and more. Runs in CI and posts a report comment on every pull request.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"frontguard": "./dist/cli.js"
|
|
@@ -30,11 +30,16 @@
|
|
|
30
30
|
"prepack": "npm run build"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
|
-
"eslint",
|
|
34
|
-
"ci",
|
|
35
|
-
"pull-request",
|
|
36
33
|
"frontend",
|
|
37
|
-
"
|
|
34
|
+
"pr",
|
|
35
|
+
"guardrails",
|
|
36
|
+
"ci",
|
|
37
|
+
"eslint",
|
|
38
|
+
"typescript",
|
|
39
|
+
"bundle-size",
|
|
40
|
+
"code-review",
|
|
41
|
+
"bitbucket",
|
|
42
|
+
"secrets"
|
|
38
43
|
],
|
|
39
44
|
"license": "MIT",
|
|
40
45
|
"dependencies": {
|