pumuki 6.3.290 → 6.3.292
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/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.3.
|
|
1
|
+
6.3.291
|
|
@@ -203,7 +203,7 @@ const normalizeScopedRuleEngineFindings = (params: {
|
|
|
203
203
|
changedLinesByPath: ReadonlyMap<string, ReadonlySet<number>>;
|
|
204
204
|
}): ReadonlyArray<Finding> => {
|
|
205
205
|
if (
|
|
206
|
-
params.scope.kind !== 'staged' ||
|
|
206
|
+
(params.scope.kind !== 'staged' && params.scope.kind !== 'repoAndStaged') ||
|
|
207
207
|
(params.stage !== 'PRE_WRITE' && params.stage !== 'PRE_COMMIT')
|
|
208
208
|
) {
|
|
209
209
|
return params.findings;
|
|
@@ -272,7 +272,7 @@ const toResultScope = (params: {
|
|
|
272
272
|
};
|
|
273
273
|
|
|
274
274
|
const isFindingBlocking = (finding: SnapshotFinding): boolean => {
|
|
275
|
-
return
|
|
275
|
+
return finding.blocking !== false;
|
|
276
276
|
};
|
|
277
277
|
|
|
278
278
|
const toLifecycleAuditFinding = (finding: SnapshotFinding): LifecycleAuditFinding => ({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.292",
|
|
4
4
|
"description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|