@yasserkhanorg/e2e-agents 1.3.1 → 1.3.2

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.
@@ -1 +1 @@
1
- {"version":3,"file":"git.d.ts","sourceRoot":"","sources":["../../src/agent/git.ts"],"names":[],"mappings":"AAyGA,MAAM,WAAW,eAAe;IAC5B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,YAAY,GAAG,QAAQ,CAAC;CAC1C;AAED,MAAM,WAAW,gBAAgB;IAC7B,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAChC;AA8CD,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,gBAAgB,GAAG,eAAe,CA2C3G"}
1
+ {"version":3,"file":"git.d.ts","sourceRoot":"","sources":["../../src/agent/git.ts"],"names":[],"mappings":"AAkHA,MAAM,WAAW,eAAe;IAC5B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,YAAY,GAAG,QAAQ,CAAC;CAC1C;AAED,MAAM,WAAW,gBAAgB;IAC7B,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAChC;AA8CD,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,gBAAgB,GAAG,eAAe,CA2C3G"}
package/dist/agent/git.js CHANGED
@@ -16,6 +16,7 @@ const IGNORED_DIR_SEGMENTS = [
16
16
  '__tests__',
17
17
  '__mocks__',
18
18
  'testlib',
19
+ 'scripts',
19
20
  ];
20
21
  // Exact filenames (basename) that are never relevant.
21
22
  const IGNORED_BASENAMES = new Set([
@@ -38,6 +39,11 @@ const IGNORED_BASENAMES = new Set([
38
39
  'jest.config.js',
39
40
  'jest.config.ts',
40
41
  'babel.config.js',
42
+ 'webpack.config.js',
43
+ 'Makefile',
44
+ 'config.mk',
45
+ 'go.mod',
46
+ 'go.sum',
41
47
  ]);
42
48
  // Extensions that are never source code.
43
49
  const IGNORED_EXTENSIONS = new Set([
@@ -46,6 +52,8 @@ const IGNORED_EXTENSIONS = new Set([
46
52
  '.lock',
47
53
  '.png', '.jpg', '.jpeg', '.gif', '.svg', '.ico',
48
54
  '.woff', '.woff2', '.ttf', '.eot',
55
+ '.yml', '.yaml',
56
+ '.sh',
49
57
  ]);
50
58
  // File patterns that indicate test/spec files (not production code).
51
59
  const TEST_FILE_PATTERNS = [
@@ -53,6 +61,7 @@ const TEST_FILE_PATTERNS = [
53
61
  /\.test\.[tj]sx?$/,
54
62
  /_test\.go$/,
55
63
  /\.stories\.[tj]sx?$/,
64
+ /\.d\.ts$/,
56
65
  ];
57
66
  // Config file patterns that are not production source code.
58
67
  const CONFIG_FILE_PATTERNS = [
@@ -13,6 +13,7 @@ const IGNORED_DIR_SEGMENTS = [
13
13
  '__tests__',
14
14
  '__mocks__',
15
15
  'testlib',
16
+ 'scripts',
16
17
  ];
17
18
  // Exact filenames (basename) that are never relevant.
18
19
  const IGNORED_BASENAMES = new Set([
@@ -35,6 +36,11 @@ const IGNORED_BASENAMES = new Set([
35
36
  'jest.config.js',
36
37
  'jest.config.ts',
37
38
  'babel.config.js',
39
+ 'webpack.config.js',
40
+ 'Makefile',
41
+ 'config.mk',
42
+ 'go.mod',
43
+ 'go.sum',
38
44
  ]);
39
45
  // Extensions that are never source code.
40
46
  const IGNORED_EXTENSIONS = new Set([
@@ -43,6 +49,8 @@ const IGNORED_EXTENSIONS = new Set([
43
49
  '.lock',
44
50
  '.png', '.jpg', '.jpeg', '.gif', '.svg', '.ico',
45
51
  '.woff', '.woff2', '.ttf', '.eot',
52
+ '.yml', '.yaml',
53
+ '.sh',
46
54
  ]);
47
55
  // File patterns that indicate test/spec files (not production code).
48
56
  const TEST_FILE_PATTERNS = [
@@ -50,6 +58,7 @@ const TEST_FILE_PATTERNS = [
50
58
  /\.test\.[tj]sx?$/,
51
59
  /_test\.go$/,
52
60
  /\.stories\.[tj]sx?$/,
61
+ /\.d\.ts$/,
53
62
  ];
54
63
  // Config file patterns that are not production source code.
55
64
  const CONFIG_FILE_PATTERNS = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yasserkhanorg/e2e-agents",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "AI-powered E2E test impact analysis, generation, and healing. Analyzes code changes to identify affected Playwright tests, detects coverage gaps, and generates or repairs specs using pluggable LLM providers (Claude, OpenAI, Ollama). Includes MCP server, traceability, and CI/CD integration.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/esm/index.js",