pr-checkmate 1.19.7 → 1.19.9
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.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/config/config.d.ts +3 -0
- package/dist/config/config.d.ts.map +1 -0
- package/dist/config/constants.d.ts +33 -0
- package/dist/config/constants.d.ts.map +1 -0
- package/dist/config/index.d.ts +24 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/loader.d.ts +15 -0
- package/dist/config/loader.d.ts.map +1 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -1
- package/dist/init.d.ts +3 -0
- package/dist/init.d.ts.map +1 -0
- package/dist/interfaces/index.d.ts +52 -0
- package/dist/interfaces/index.d.ts.map +1 -0
- package/dist/scripts/copy-configs.d.ts +3 -0
- package/dist/scripts/copy-configs.d.ts.map +1 -0
- package/dist/scripts/dependency-check.d.ts +5 -0
- package/dist/scripts/dependency-check.d.ts.map +1 -0
- package/dist/scripts/index.d.ts +7 -0
- package/dist/scripts/index.d.ts.map +1 -0
- package/dist/scripts/lint.d.ts +2 -0
- package/dist/scripts/lint.d.ts.map +1 -0
- package/dist/scripts/npm-audit.d.ts +5 -0
- package/dist/scripts/npm-audit.d.ts.map +1 -0
- package/dist/scripts/prettier-autoformat.d.ts +2 -0
- package/dist/scripts/prettier-autoformat.d.ts.map +1 -0
- package/dist/scripts/publish-github.d.ts +2 -0
- package/dist/scripts/publish-github.d.ts.map +1 -0
- package/dist/scripts/security.d.ts +5 -0
- package/dist/scripts/security.d.ts.map +1 -0
- package/dist/scripts/spellcheck.d.ts +2 -0
- package/dist/scripts/spellcheck.d.ts.map +1 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/logger.d.ts +19 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/package.json +2 -1
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config/config.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM,KAEM,CAAC;AAE1B,eAAO,MAAM,WAAW,KAAoB,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common patterns to ignore in all checks
|
|
3
|
+
*/
|
|
4
|
+
export declare const IGNORE_PATTERNS: string[];
|
|
5
|
+
export declare const CONFIG_FILE_PATTERNS: string[];
|
|
6
|
+
/**
|
|
7
|
+
* File extensions to check
|
|
8
|
+
*/
|
|
9
|
+
export declare const SOURCE_EXTENSIONS: {
|
|
10
|
+
typescript: string[];
|
|
11
|
+
javascript: string[];
|
|
12
|
+
markdown: string[];
|
|
13
|
+
json: string[];
|
|
14
|
+
all: string[];
|
|
15
|
+
};
|
|
16
|
+
export declare const DEFAULT_COMMANDS: {
|
|
17
|
+
'npx pr-checkmate init': string;
|
|
18
|
+
'npx pr-checkmate all': string;
|
|
19
|
+
'npx pr-checkmate lint': string;
|
|
20
|
+
'npx pr-checkmate prettier': string;
|
|
21
|
+
'npx pr-checkmate deps': string;
|
|
22
|
+
'npx pr-checkmate npm-audit': string;
|
|
23
|
+
'npx pr-checkmate security': string;
|
|
24
|
+
'npx pr-checkmate spellcheck': string;
|
|
25
|
+
};
|
|
26
|
+
export declare const documentation: {
|
|
27
|
+
eslint: string;
|
|
28
|
+
typescriptEslint: string;
|
|
29
|
+
prettier: string;
|
|
30
|
+
cspell: string;
|
|
31
|
+
};
|
|
32
|
+
export declare const CONFIG_FILE: string;
|
|
33
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/config/constants.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,eAAO,MAAM,eAAe,UAyD3B,CAAC;AAEF,eAAO,MAAM,oBAAoB,UAOhC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;CAM7B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;CAS5B,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;CAKzB,CAAC;AAEF,eAAO,MAAM,WAAW,QAAmD,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from './constants';
|
|
2
|
+
export { loadProjectConfig } from '../config/loader';
|
|
3
|
+
/**
|
|
4
|
+
* Get SOURCE_PATH dynamically
|
|
5
|
+
* This ensures fresh config is always read
|
|
6
|
+
*/
|
|
7
|
+
export declare function getSourcePath(): string;
|
|
8
|
+
/**
|
|
9
|
+
* Get path to package config files
|
|
10
|
+
*/
|
|
11
|
+
export declare function getPackageConfigPath(fileName: string): string;
|
|
12
|
+
/**
|
|
13
|
+
* Check if project has local config
|
|
14
|
+
*/
|
|
15
|
+
export declare function hasLocalConfig(configNames: string[]): boolean;
|
|
16
|
+
/**
|
|
17
|
+
* For backward compatibility, also export as constant
|
|
18
|
+
* But this will be evaluated at module load time
|
|
19
|
+
*/
|
|
20
|
+
export declare const config: {
|
|
21
|
+
sourcePath: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const SOURCE_PATH: string;
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAIA,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAmBrD;;;GAGG;AACH,wBAAgB,aAAa,IAAI,MAAM,CAItC;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAI7D;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,WAAW,EAAE,MAAM,EAAE,GAAG,OAAO,CAI7D;AAED;;;GAGG;AACH,eAAO,MAAM,MAAM;gBA9CkB,MAAM;CA8CT,CAAC;AACnC,eAAO,MAAM,WAAW,QAAoB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { PRCheckMateConfig } from '../interfaces';
|
|
2
|
+
/**
|
|
3
|
+
* Load project configuration from pr-checkmate.json
|
|
4
|
+
* Falls back to defaults if not found
|
|
5
|
+
*/
|
|
6
|
+
export declare function loadProjectConfig(): PRCheckMateConfig;
|
|
7
|
+
/**
|
|
8
|
+
* Get default configuration
|
|
9
|
+
*/
|
|
10
|
+
export declare function getDefaultConfig(): PRCheckMateConfig;
|
|
11
|
+
/**
|
|
12
|
+
* Export config for external use
|
|
13
|
+
*/
|
|
14
|
+
export declare const DEFAULT_CONFIG: PRCheckMateConfig;
|
|
15
|
+
//# sourceMappingURL=loader.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../src/config/loader.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAGlD;;;GAGG;AACH,wBAAgB,iBAAiB,IAAI,iBAAiB,CAgBrD;AAgCD;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,iBAAiB,CAoDpD;AAED;;GAEG;AACH,eAAO,MAAM,cAAc,mBAAqB,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CheckmateConfig } from './interfaces';
|
|
2
|
+
export { getSourcePath, getPackageConfigPath, hasLocalConfig } from './config';
|
|
3
|
+
export { runLint } from './scripts/lint';
|
|
4
|
+
export { runDependencyCheck } from './scripts/dependency-check';
|
|
5
|
+
export { runPrettier } from './scripts/prettier-autoformat';
|
|
6
|
+
export { runSpellcheck } from './scripts/spellcheck';
|
|
7
|
+
export { runSecurityScan } from './scripts/security';
|
|
8
|
+
export { runNpmAudit } from './scripts/npm-audit';
|
|
9
|
+
/**
|
|
10
|
+
* Run all checks sequentially
|
|
11
|
+
* @returns Promise that resolves when all checks complete
|
|
12
|
+
*/
|
|
13
|
+
export declare function runAllChecks(): Promise<void>;
|
|
14
|
+
/**
|
|
15
|
+
* Run checks based on configuration
|
|
16
|
+
*/
|
|
17
|
+
export declare function runChecks(config?: CheckmateConfig): Promise<void>;
|
|
18
|
+
export { logger } from './utils';
|
|
19
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAa/C,OAAO,EAAE,aAAa,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAC/E,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAElD;;;GAGG;AACH,wBAAsB,YAAY,IAAI,OAAO,CAAC,IAAI,CAAC,CAOlD;AAED;;GAEG;AACH,wBAAsB,SAAS,CAAC,MAAM,GAAE,eAAoB,GAAG,OAAO,CAAC,IAAI,CAAC,CAK3E;AAED,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.runNpmAudit = exports.runSecurityScan = exports.runSpellcheck = exports.runPrettier = exports.runDependencyCheck = exports.runLint = exports.hasLocalConfig = exports.getPackageConfigPath = exports.getSourcePath = void 0;
|
|
3
|
+
exports.logger = exports.runNpmAudit = exports.runSecurityScan = exports.runSpellcheck = exports.runPrettier = exports.runDependencyCheck = exports.runLint = exports.hasLocalConfig = exports.getPackageConfigPath = exports.getSourcePath = void 0;
|
|
4
4
|
exports.runAllChecks = runAllChecks;
|
|
5
5
|
exports.runChecks = runChecks;
|
|
6
6
|
/**
|
|
@@ -55,3 +55,5 @@ async function runChecks(config = {}) {
|
|
|
55
55
|
if (!config.skipFormat && config.autoCommit)
|
|
56
56
|
await (0, prettier_autoformat_1.runPrettier)();
|
|
57
57
|
}
|
|
58
|
+
var utils_1 = require("./utils");
|
|
59
|
+
Object.defineProperty(exports, "logger", { enumerable: true, get: function () { return utils_1.logger; } });
|
package/dist/init.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../src/init.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,WAAW,QAAmD,CAAC;AA6B5E,wBAAsB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CAmF1C"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export interface ConfigFile {
|
|
2
|
+
source: string;
|
|
3
|
+
dest: string;
|
|
4
|
+
}
|
|
5
|
+
export interface PrettierConfig {
|
|
6
|
+
semi: boolean;
|
|
7
|
+
singleQuote: boolean;
|
|
8
|
+
trailingComma: string;
|
|
9
|
+
bracketSpacing: boolean;
|
|
10
|
+
arrowParens: string;
|
|
11
|
+
printWidth: number;
|
|
12
|
+
}
|
|
13
|
+
export interface CspellConfig {
|
|
14
|
+
version: string;
|
|
15
|
+
language: string;
|
|
16
|
+
words: string[];
|
|
17
|
+
ignorePaths: string[];
|
|
18
|
+
enableFiletypes: string[];
|
|
19
|
+
ignoreRegExpList: string[];
|
|
20
|
+
}
|
|
21
|
+
export interface PRCheckMateConfig {
|
|
22
|
+
sourcePath: string;
|
|
23
|
+
lint?: {
|
|
24
|
+
rules?: Record<string, any>;
|
|
25
|
+
ignorePatterns?: string[];
|
|
26
|
+
};
|
|
27
|
+
prettier?: {
|
|
28
|
+
config?: Record<string, any>;
|
|
29
|
+
};
|
|
30
|
+
spellcheck?: {
|
|
31
|
+
words?: string[];
|
|
32
|
+
ignoreWords?: string[];
|
|
33
|
+
ignorePaths?: string[];
|
|
34
|
+
};
|
|
35
|
+
security?: {
|
|
36
|
+
gitleaks?: {
|
|
37
|
+
enabled: boolean;
|
|
38
|
+
};
|
|
39
|
+
'npm-audit'?: {
|
|
40
|
+
enabled: boolean;
|
|
41
|
+
auditLevel: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
export interface CheckmateConfig {
|
|
46
|
+
skipLint?: boolean;
|
|
47
|
+
skipDeps?: boolean;
|
|
48
|
+
skipFormat?: boolean;
|
|
49
|
+
skipSpell?: boolean;
|
|
50
|
+
autoCommit?: boolean;
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,OAAO,CAAC;IACd,WAAW,EAAE,OAAO,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,OAAO,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,gBAAgB,EAAE,MAAM,EAAE,CAAC;CAC5B;AAED,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE;QACL,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;QAC5B,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;KAC3B,CAAC;IACF,QAAQ,CAAC,EAAE;QACT,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC9B,CAAC;IACF,UAAU,CAAC,EAAE;QACX,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;QACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;QACvB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;KACxB,CAAC;IACF,QAAQ,CAAC,EAAE;QACT,QAAQ,CAAC,EAAE;YAAE,OAAO,EAAE,OAAO,CAAA;SAAE,CAAC;QAChC,WAAW,CAAC,EAAE;YAAE,OAAO,EAAE,OAAO,CAAC;YAAC,UAAU,EAAE,MAAM,CAAA;SAAE,CAAC;KACxD,CAAC;CACH;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copy-configs.d.ts","sourceRoot":"","sources":["../../src/scripts/copy-configs.ts"],"names":[],"mappings":"AAaA,iBAAS,WAAW,IAAI,IAAI,CAoB3B;AAMD,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dependency-check.d.ts","sourceRoot":"","sources":["../../src/scripts/dependency-check.ts"],"names":[],"mappings":"AAKA;;GAEG;AACH,wBAAsB,kBAAkB,IAAI,OAAO,CAAC,IAAI,CAAC,CAkCxD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './dependency-check';
|
|
2
|
+
export * from './lint';
|
|
3
|
+
export * from './prettier-autoformat';
|
|
4
|
+
export * from './spellcheck';
|
|
5
|
+
export * from './security';
|
|
6
|
+
export declare function runJob(jobName: string): Promise<void>;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/scripts/index.ts"],"names":[],"mappings":"AAOA,cAAc,oBAAoB,CAAC;AACnC,cAAc,QAAQ,CAAC;AACvB,cAAc,uBAAuB,CAAC;AACtC,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAE3B,wBAAsB,MAAM,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAwD3D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lint.d.ts","sourceRoot":"","sources":["../../src/scripts/lint.ts"],"names":[],"mappings":"AAKA,wBAAsB,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,CA8C7C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"npm-audit.d.ts","sourceRoot":"","sources":["../../src/scripts/npm-audit.ts"],"names":[],"mappings":"AAQA;;GAEG;AACH,wBAAsB,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC,CAiCjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prettier-autoformat.d.ts","sourceRoot":"","sources":["../../src/scripts/prettier-autoformat.ts"],"names":[],"mappings":"AAsFA,wBAAsB,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC,CAuDjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publish-github.d.ts","sourceRoot":"","sources":["../../src/scripts/publish-github.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security.d.ts","sourceRoot":"","sources":["../../src/scripts/security.ts"],"names":[],"mappings":"AAsEA;;GAEG;AACH,wBAAsB,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC,CAkDrD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spellcheck.d.ts","sourceRoot":"","sources":["../../src/scripts/spellcheck.ts"],"names":[],"mappings":"AA6FA,wBAAsB,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC,CAoCnD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare class Logger {
|
|
2
|
+
private logs;
|
|
3
|
+
private levelOrder;
|
|
4
|
+
private currentLevel;
|
|
5
|
+
private getTimestamp;
|
|
6
|
+
private shouldLog;
|
|
7
|
+
private colorize;
|
|
8
|
+
private logMessage;
|
|
9
|
+
log(msg: string): void;
|
|
10
|
+
info(msg: string): void;
|
|
11
|
+
warn(msg: string): void;
|
|
12
|
+
error(msg: string, err?: unknown): void;
|
|
13
|
+
debug(msg: string): void;
|
|
14
|
+
getLogs(): string[];
|
|
15
|
+
clear(): void;
|
|
16
|
+
}
|
|
17
|
+
export declare const logger: Logger;
|
|
18
|
+
export {};
|
|
19
|
+
//# sourceMappingURL=logger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../src/utils/logger.ts"],"names":[],"mappings":"AAEA,cAAM,MAAM;IACV,OAAO,CAAC,IAAI,CAAgB;IAE5B,OAAO,CAAC,UAAU,CAMhB;IAEF,OAAO,CAAC,YAAY,CAAoB;IAExC,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,QAAQ;IAahB,OAAO,CAAC,UAAU;IAaX,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAItB,IAAI,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIvB,IAAI,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIvB,KAAK,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,OAAO,GAAG,IAAI;IAIvC,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIxB,OAAO,IAAI,MAAM,EAAE;IAInB,KAAK,IAAI,IAAI;CAGrB;AAED,eAAO,MAAM,MAAM,QAAe,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pr-checkmate",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.9",
|
|
4
4
|
"description": "Automated PR quality checks: linting, formatting, dependency analysis, and spellcheck",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"github-actions",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"automation"
|
|
13
13
|
],
|
|
14
14
|
"main": "./dist/cli.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
15
16
|
"type": "commonjs",
|
|
16
17
|
"bin": {
|
|
17
18
|
"pr-checkmate": "dist/cli.js"
|