@grunnverk/kodrdriv 1.3.0 → 1.5.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/dist/constants.js +3 -3
- package/dist/mcp-server.js +6 -6
- package/dist/mcp-server.js.map +2 -2
- package/package.json +13 -13
- package/.claude/settings.local.json +0 -12
- package/.gitignore~ +0 -23
- package/input/250509-kodrdriv-library-rules.m4a +0 -0
- package/processed/250705-kodrdriv-confirm-editor-for-commit-and-release.m4a +0 -0
- package/processed/250705-kodrdriv-confirm-flag-release.m4a +0 -0
- package/processed/250705-kodrdriv-context-for-review.m4a +0 -0
- package/processed/250705-kodrdriv-feedback-on-publish-pipeline.m4a +0 -0
- package/processed/250705-kodrdriv-intelligent-eslint-style.m4a +0 -0
- package/processed/250705-kodrdriv-make-review-less-strict.m4a +0 -0
- package/processed/250705-kodrdriv-multilevel-transcription.m4a +0 -0
- package/processed/250705-kodrdriv-opinionated-review.m4a +0 -0
- package/processed/250705-kodrdriv-publish-next-version.m4a +0 -0
- package/processed/250705-kodrdriv-release-branches-and-milestones.m4a +0 -0
- package/processed/250705-kodrdriv-scope-check-fix-or-ignore.m4a +0 -0
- package/processed/250705-kodrdriv-scope-checker.m4a +0 -0
- package/processed/250705-kodrdriv-specify-a-release-note-for-publish.m4a +0 -0
- package/temp-dist/arguments.js +0 -817
- package/temp-dist/constants.js +0 -202
- package/temp-dist/logging.js +0 -130
- package/temp-dist/types.js +0 -112
- package/temp-dist/util/stdin.js +0 -132
- package/temp-dist/util/storage.js +0 -149
- package/temp-dist/util/validation.js +0 -110
package/dist/constants.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import os from 'os';
|
|
2
2
|
import path from 'path';
|
|
3
3
|
|
|
4
|
-
const VERSION = '1.
|
|
5
|
-
const BUILD_HOSTNAME = '
|
|
6
|
-
const BUILD_TIMESTAMP = '2026-01-
|
|
4
|
+
const VERSION = '1.5.0 (HEAD/49262e4 T:v1.5.0 2026-01-22 13:09:19 -0800) linux x64 v24.13.0';
|
|
5
|
+
const BUILD_HOSTNAME = 'runnervmymu0l';
|
|
6
|
+
const BUILD_TIMESTAMP = '2026-01-22T21:12:18.507Z';
|
|
7
7
|
const PROGRAM_NAME = 'kodrdriv';
|
|
8
8
|
const DEFAULT_OVERRIDES = false;
|
|
9
9
|
const DATE_FORMAT_YEAR_MONTH_DAY_HOURS_MINUTES_SECONDS_MILLISECONDS = 'YYYY-MM-DD-HHmmss.SSS';
|
package/dist/mcp-server.js
CHANGED
|
@@ -2251,7 +2251,7 @@ var Doc = class {
|
|
|
2251
2251
|
var version = {
|
|
2252
2252
|
major: 4,
|
|
2253
2253
|
minor: 3,
|
|
2254
|
-
patch:
|
|
2254
|
+
patch: 6
|
|
2255
2255
|
};
|
|
2256
2256
|
|
|
2257
2257
|
// node_modules/zod/v4/core/schemas.js
|
|
@@ -3542,7 +3542,7 @@ var $ZodRecord = /* @__PURE__ */ $constructor("$ZodRecord", (inst, def) => {
|
|
|
3542
3542
|
if (keyResult instanceof Promise) {
|
|
3543
3543
|
throw new Error("Async schemas not supported in object keys currently");
|
|
3544
3544
|
}
|
|
3545
|
-
const checkNumericKey = typeof key === "string" && number.test(key) && keyResult.issues.length
|
|
3545
|
+
const checkNumericKey = typeof key === "string" && number.test(key) && keyResult.issues.length;
|
|
3546
3546
|
if (checkNumericKey) {
|
|
3547
3547
|
const retryResult = def.keyType._zod.run({ value: Number(key), issues: [] }, ctx);
|
|
3548
3548
|
if (retryResult instanceof Promise) {
|
|
@@ -11090,7 +11090,7 @@ function finalize(ctx, schema) {
|
|
|
11090
11090
|
}
|
|
11091
11091
|
}
|
|
11092
11092
|
}
|
|
11093
|
-
if (refSchema.$ref) {
|
|
11093
|
+
if (refSchema.$ref && refSeen.def) {
|
|
11094
11094
|
for (const key in schema2) {
|
|
11095
11095
|
if (key === "$ref" || key === "allOf")
|
|
11096
11096
|
continue;
|
|
@@ -13786,9 +13786,9 @@ import { formatErrorForMCP, extractCommandErrorDetails, getLogger as getCoreLogg
|
|
|
13786
13786
|
// src/constants.ts
|
|
13787
13787
|
import os from "os";
|
|
13788
13788
|
import path from "path";
|
|
13789
|
-
var VERSION = "1.
|
|
13790
|
-
var BUILD_HOSTNAME = "
|
|
13791
|
-
var BUILD_TIMESTAMP = "2026-01-
|
|
13789
|
+
var VERSION = "1.5.0 (HEAD/49262e4 T:v1.5.0 2026-01-22 13:09:19 -0800) linux x64 v24.13.0";
|
|
13790
|
+
var BUILD_HOSTNAME = "runnervmymu0l";
|
|
13791
|
+
var BUILD_TIMESTAMP = "2026-01-22T21:12:18.853Z";
|
|
13792
13792
|
var PROGRAM_NAME = "kodrdriv";
|
|
13793
13793
|
var DATE_FORMAT_YEAR_MONTH_DAY_HOURS_MINUTES_SECONDS_MILLISECONDS = "YYYY-MM-DD-HHmmss.SSS";
|
|
13794
13794
|
var DEFAULT_OUTPUT_DIRECTORY = "output/kodrdriv";
|