@wispbit/local 1.0.25 → 1.0.27
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/dist/cli.js +1190 -638
- package/dist/cli.js.map +4 -4
- package/dist/index.js +10 -3857
- package/dist/index.js.map +4 -4
- package/dist/package.json +3 -2
- package/dist/src/api/WispbitApiClient.d.ts +185 -0
- package/dist/src/api/WispbitApiClient.d.ts.map +1 -0
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/environment/Config.d.ts +15 -5
- package/dist/src/environment/Config.d.ts.map +1 -1
- package/dist/src/providers/ViolationValidationProvider.d.ts +7 -11
- package/dist/src/providers/ViolationValidationProvider.d.ts.map +1 -1
- package/dist/src/providers/WispbitRuleProvider.d.ts +0 -16
- package/dist/src/providers/WispbitRuleProvider.d.ts.map +1 -1
- package/dist/src/providers/WispbitViolationValidationProvider.d.ts +4 -7
- package/dist/src/providers/WispbitViolationValidationProvider.d.ts.map +1 -1
- package/dist/src/schemas.d.ts +13 -514
- package/dist/src/schemas.d.ts.map +1 -1
- package/dist/src/steps/ExecutionEventEmitter.d.ts +37 -2
- package/dist/src/steps/ExecutionEventEmitter.d.ts.map +1 -1
- package/dist/src/steps/FileExecutionContext.d.ts +14 -5
- package/dist/src/steps/FileExecutionContext.d.ts.map +1 -1
- package/dist/src/steps/FileFilterStep.d.ts +0 -7
- package/dist/src/steps/FileFilterStep.d.ts.map +1 -1
- package/dist/src/steps/GotoDefinitionStep.d.ts.map +1 -1
- package/dist/src/steps/LLMStep.d.ts +0 -10
- package/dist/src/steps/LLMStep.d.ts.map +1 -1
- package/dist/src/steps/RuleExecutor.d.ts +5 -1
- package/dist/src/steps/RuleExecutor.d.ts.map +1 -1
- package/dist/src/test/TestExecutor.d.ts +6 -1
- package/dist/src/test/TestExecutor.d.ts.map +1 -1
- package/dist/src/types.d.ts +1 -5
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/utils/debugLogger.d.ts +6 -0
- package/dist/src/utils/debugLogger.d.ts.map +1 -0
- package/dist/src/utils/formatters.d.ts.map +1 -1
- package/dist/src/utils/git.d.ts +31 -2
- package/dist/src/utils/git.d.ts.map +1 -1
- package/dist/src/utils/git.test.d.ts +2 -0
- package/dist/src/utils/git.test.d.ts.map +1 -0
- package/dist/src/utils/patternMatching.d.ts +2 -0
- package/dist/src/utils/patternMatching.d.ts.map +1 -0
- package/dist/src/utils/validateRule.d.ts +37 -1
- package/dist/src/utils/validateRule.d.ts.map +1 -1
- package/dist/src/validationSchemas.d.ts +553 -0
- package/dist/src/validationSchemas.d.ts.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wispbit/local",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"bin": {
|
|
@@ -52,16 +52,17 @@
|
|
|
52
52
|
"dotenv": "^16.3.1",
|
|
53
53
|
"glob": "^10.4.5",
|
|
54
54
|
"google-protobuf": "^3.20.1",
|
|
55
|
+
"ignore": "^7.0.5",
|
|
55
56
|
"jest-diff": "^30.2.0",
|
|
56
57
|
"js-yaml": "^4.1.0",
|
|
57
58
|
"keyv": "^5.5.3",
|
|
58
59
|
"keyv-file": "^5.2.0",
|
|
59
60
|
"latest-version": "^9.0.0",
|
|
60
61
|
"meow": "^14.0.0",
|
|
61
|
-
"minimatch": "^9.0.3",
|
|
62
62
|
"openai": "4.91.0",
|
|
63
63
|
"ora": "^9.0.0",
|
|
64
64
|
"p-limit": "^6.1.0",
|
|
65
|
+
"p-retry": "^6.2.1",
|
|
65
66
|
"pretty-format": "^30.2.0",
|
|
66
67
|
"semver": "^7.7.3",
|
|
67
68
|
"tree-sitter-graphql": "github:joowani/tree-sitter-graphql#c3898a14e872a72726a3e981e647e5456812bd78",
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
"@types/google-protobuf": "^3.15.6",
|
|
74
75
|
"@types/js-yaml": "^4.0.5",
|
|
75
76
|
"@types/node": "^20.0.0",
|
|
76
|
-
"esbuild": "^0.25.
|
|
77
|
+
"esbuild": "^0.25.6",
|
|
77
78
|
"esbuild-plugin-tsc": "^0.5.0",
|
|
78
79
|
"tsx": "^4.0.0",
|
|
79
80
|
"typescript": "^5.0.0",
|
|
@@ -85,6 +86,6 @@
|
|
|
85
86
|
"lint": "eslint . --ext .ts",
|
|
86
87
|
"test": "vitest",
|
|
87
88
|
"cli": "tsx src/index.ts",
|
|
88
|
-
"deploy": "pnpm run build && pnpm publish --access=public --no-git-checks"
|
|
89
|
+
"deploy": "pnpm run build && node ./dist/cli.js --help && pnpm publish --access=public --no-git-checks"
|
|
89
90
|
}
|
|
90
91
|
}
|