We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e33d24c commit a24d4e7Copy full SHA for a24d4e7
.gitignore
@@ -106,3 +106,6 @@ dist
106
/lib
107
/dist-ts
108
/index.d.ts
109
+
110
+# Agents
111
+.claude
explorer/shim/path.js
@@ -4,6 +4,7 @@ const path = {
4
module.exports = new Proxy(path, {
5
get(_t, p) {
6
if (!path[p]) {
7
+ // eslint-disable-next-line no-console -- Log the missing path methods for debugging purposes.
8
console.log(p);
9
}
10
return path[p];
0 commit comments