Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5c86a97
Initial plan
Copilot Feb 4, 2026
e7d1032
Initial exploration of Phase 1 consolidation task
Copilot Feb 4, 2026
0dfccff
feat: add browser-compatible detectTests module to common
Copilot Feb 4, 2026
8dcca41
feat: make Common module browser-compatible
Copilot Feb 4, 2026
33aa3ef
feat: add resolveTests module to Core
Copilot Feb 4, 2026
f09791e
Add tests for module exports and remove unused test files
hawkeyexl Feb 7, 2026
513c0c6
add ignore
hawkeyexl Feb 8, 2026
1c0f8e0
Squashed 'common/' changes from 8b339c6d1..53c0ab09b
hawkeyexl Feb 10, 2026
578c837
Resolve merge conflicts in common module
hawkeyexl Feb 10, 2026
d1e3bc2
Refactor codebase by removing deprecated functions and updating depen…
hawkeyexl Feb 10, 2026
3c1efd8
Update dependencies and enhance configuration handling
hawkeyexl Feb 10, 2026
4a8bc9a
Enhance screenshot handling and server management in tests
hawkeyexl Feb 10, 2026
215604e
Refactor dependencies and improve screenshot saving functionality
hawkeyexl Feb 11, 2026
e6fc4f1
Enhance test coverage and functionality
hawkeyexl Feb 11, 2026
335297a
Convert to ESM-primary
hawkeyexl Feb 11, 2026
c3bc1c5
fixed broken test
hawkeyexl Feb 11, 2026
b3b8cf5
update deps
hawkeyexl Feb 11, 2026
efe1e6f
Update dependencies and versioning
hawkeyexl Feb 11, 2026
3a4d247
Add tests and HTML files for drag-and-drop and DOM mutation scenarios
hawkeyexl Feb 11, 2026
23ee87d
Move exports to main index.js
hawkeyexl Feb 11, 2026
bb55028
convert to esm
hawkeyexl Feb 12, 2026
0d24f3f
initial typescript conversion
hawkeyexl Feb 12, 2026
a9b37b4
Add import.meta.url handling in CJS build - Define import.meta.url fo…
hawkeyexl Feb 12, 2026
3733a18
Update version to 4.0.0-beta.0 in package.json and package-lock.json …
hawkeyexl Feb 12, 2026
d1922b5
fix test fixture
hawkeyexl Feb 12, 2026
25b7910
Update test imports and remove obsolete regression test data - Change…
hawkeyexl Feb 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
settings.local.json
131 changes: 0 additions & 131 deletions cli/.github/workflows/update-core.yaml

This file was deleted.

2 changes: 2 additions & 0 deletions cli/.mocharc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require:
- ./test/hooks.js
2 changes: 2 additions & 0 deletions cli/bin/doc-detective.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env node
import "../dist/cli.js";
6 changes: 3 additions & 3 deletions cli/dev/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { setArgs, setConfig } = require("../src/utils");
import { setArgs, setConfig } from "../dist/utils.js";

// Test that arguments are parsed correctly
json = {
const json = {
}
console.log(setConfig(json,setArgs(process.argv)))
console.log(setConfig(json,setArgs(process.argv)))
Binary file added cli/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion cli/index.js

This file was deleted.

Loading