Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ› Incompatibility with wireit #1601

Closed
1 task done
ChiefORZ opened this issue Jan 19, 2024 · 2 comments Β· Fixed by biomejs/biome-vscode#91
Closed
1 task done

πŸ› Incompatibility with wireit #1601

ChiefORZ opened this issue Jan 19, 2024 · 2 comments Β· Fixed by biomejs/biome-vscode#91

Comments

@ChiefORZ
Copy link

Environment information

➜ bun biome rage
CLI:
  Version:                      1.5.2
  Color support:                true

Platform:
  CPU Architecture:             x86_64
  OS:                           macos

Environment:
  BIOME_LOG_DIR:                unset
  NO_COLOR:                     unset
  TERM:                         "xterm-256color"
  JS_RUNTIME_VERSION:           "v20.8.1"
  JS_RUNTIME_NAME:              "node"
  NODE_PACKAGE_MANAGER:         "bun/1.0.14"

Biome Configuration:
  Status:                       Loaded successfully
  Formatter disabled:           false
  Linter disabled:              true
  Organize imports disabled:    true
  VCS disabled:                 false

Workspace:
  Open Documents:               0

What happened?

Our project uses wireit to cache operations like build and tests. On top of that biome is setup in our pre-commit hooks and in our CI check to keep the formatting of the codebase consistent. Our whole team is using vscode with the biome extension to format the code using:

{
  "editor.codeActionsOnSave": {
    "quickfix.biome": "explicit",
    "source.fixAll": "explicit",
    "source.organizeImports.biome": "explicit",
    "source.organizeImports": "explicit",
    "source.sortPackageJson": "explicit"
  }
}

Saving formats everything perfectly, imports are organized and the code is cleaned.

Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli] exit 0
[cli-stderr] finish
[cli-stderr] close
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
[Info  - 15:10:37] Server initialized with PID: 35360

The problem starts when the precommit runs the checks via wireit or we run some scripts like the build or test. Then a vscode alert pop's up saying Biome client: couldn't create connection to server. every 10 seconds repeatedly... Screenshot 2024-01-19 at 16 31 18

When you then inspect the biome output in the vscode dev terminal the connection to the biome executable gets closed and opened all the time:

Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli] exit 0
[cli-stderr] finish
[cli-stderr] close
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
[Info  - 15:10:37] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:29:13] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli] exit 0
[cli-stderr] finish
[cli-stderr] close
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
[Info  - 16:30:45] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli] exit 0
[cli-stderr] finish
[cli-stderr] close
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[Info  - 16:30:48] Server initialized with PID: 35360
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:30:49] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:30:51] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:30:53] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:30:55] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:30:57] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:30:59] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:31:01] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:31:03] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:31:05] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:31:07] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:31:09] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stderr] end
[cli-stdout] end
[cli] exit null
[Error - 16:31:12] Biome client: couldn't create connection to server.
Error: Command "/Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome __print_socket" exited with code null
    at getSocket (/Users/username/.vscode/extensions/biomejs.biome-2.1.1/out/main.js:37483:11)
    at processTicksAndRejections (node:internal/process/task_queues:95:5)
    at createMessageTransports (/Users/username/.vscode/extensions/biomejs.biome-2.1.1/out/main.js:37497:16)
    at LanguageClient2.createConnection (/Users/username/.vscode/extensions/biomejs.biome-2.1.1/out/main.js:15897:28)
    at LanguageClient2.start (/Users/username/.vscode/extensions/biomejs.biome-2.1.1/out/main.js:15470:30)
    at f.value (/Users/username/.vscode/extensions/biomejs.biome-2.1.1/out/main.js:37272:11)
Reloading client failed: Error: Command "/Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome __print_socket" exited with code null
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close null
[cli-stderr] close
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:31:13] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:31:18] Server initialized with PID: 35360
[Info  - 16:31:18] Server initialized with PID: 35360
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:31:21] Server initialized with PID: 35360
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:31:21] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stderr] finish
[cli-stderr] close
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
[Info  - 16:31:25] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:31:29] Server initialized with PID: 35360
[Info  - 16:31:29] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:31:34] Server initialized with PID: 35360
[Info  - 16:31:34] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:31:39] Server initialized with PID: 35360
[Info  - 16:31:39] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:31:44] Server initialized with PID: 35360
[Info  - 16:31:44] Server initialized with PID: 35360
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:31:44] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli] exit 0
[cli-stderr] finish
[cli-stderr] close
Error copying file: EntryNotFound (FileSystemError): Unable to delete nonexistent file '/Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome'
Executing Biome from: /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli] exit 0
[cli-stderr] finish
[cli-stderr] close
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[Info  - 16:31:48] Server initialized with PID: 35360
[Info  - 16:31:48] Server initialized with PID: 35360
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli] exit 0
[cli-stderr] finish
[cli-stderr] close
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
[Info  - 16:31:51] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stderr] end
[cli] exit 0
[cli] exit 0
[cli-stderr] finish
[cli-stderr] finish
[cli-stderr] close
[cli-stderr] close
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
[cli] close 0
[cli-stdout] close
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[Info  - 16:31:54] Server initialized with PID: 35360
[Info  - 16:31:54] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] data 72
[cli-stderr] end
[cli] exit 0
[cli] exit 0
[cli-stderr] finish
[cli-stderr] finish
[cli-stderr] close
[cli-stderr] close
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] end
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli-stdout] finish
[cli] close 0
[cli-stdout] close
[cli] close 0
[cli-stdout] close
[Info  - 16:31:58] Server initialized with PID: 35360
[Info  - 16:31:58] Server initialized with PID: 35360
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:32:01] Server initialized with PID: 35360
[Info  - 16:32:01] Server initialized with PID: 35360
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:32:01] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:32:04] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:32:05] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:32:07] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:32:11] Server initialized with PID: 35360
[Info  - 16:32:11] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:32:17] Server initialized with PID: 35360
[Info  - 16:32:17] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] end
[cli-stdout] end
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli-stderr] close
[cli] exit 0
[cli] close 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[Info  - 16:32:22] Server initialized with PID: 35360
[Info  - 16:32:22] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[cli-stderr] end
[cli-stdout] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stderr] finish
[cli-stdout] finish
[cli-stdout] close
[cli] close 0
[cli-stderr] close
[Info  - 16:32:25] Server initialized with PID: 35360
[Info  - 16:32:25] Server initialized with PID: 35360
Reloading biome executable.
Biome binary found at /Users/username/dev/sandbox/biome-wireit-incompatibility/node_modules/@biomejs/cli-darwin-x64/biome
Copying binary to temporary folder: file:///Users/username/Library/Application%20Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
Executing Biome from: /Users/username/Library/Application Support/Code/User/workspaceStorage/ef4092d848ecd8b2b52d772da0083f77/biomejs.biome/biome
[cli-stdout] data 72
[cli-stdout] data 72
[cli-stdout] end
[cli-stdout] end
[cli-stderr] end
[cli-stderr] end
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli] exit 0
Connecting to "/Users/username/Library/Caches/dev.biomejs.biome/biome-socket-1.5.2" ...
[cli-stdout] finish
[cli-stdout] finish
[cli-stderr] finish
[cli-stderr] finish
[cli-stderr] close
[cli-stderr] close
[cli] close 0
[cli-stdout] close
[cli] close 0
[cli-stdout] close
[Info  - 16:32:30] Server initialized with PID: 35360
[Info  - 16:32:30] Server initialized with PID: 35360

I created a repository to reproduce it: check out the repository at https://github.com/chieforz/biome-wireit-incompatibility and run it in your vscode with bun install see the code formatting work, then open the terminal and run bun run build. Everything works fine.
now try to checkout the wireit branch git checkout feature/with-wireit and try to run the above explained steps again, you will see vscode screaming and shouting at you.

Expected result

described above

Code of Conduct

  • I agree to follow Biome's Code of Conduct
@nhedger
Copy link
Member

nhedger commented Jan 19, 2024

Haven’t tried to reproduce yet, but I can tell you that the reloading happens every time a lock file is changed/touched. Does that ring a bell ?

@ChiefORZ
Copy link
Author

@nhedger thank for the input, i just tried to debug if wireit touches the lockfile or maybe the package.json:

➜ bunx chokidar-cli "package.json" "bun.lockb" "src/**/*"
Watching "package.json", "bun.lockb", "src/**/*" ..
change:src/app/layout.tsx

I changed the src/app/layout.tsx so that wireit is forced to re-run the cached command. After that i run the bun run build command - as you can see nothing was changed when running the command.


Next up i tried to monitor the whole folder:

➜ bunx chokidar-cli "**/*"
Watching "**/*" ..
addDir:.wireit/6275696c64/lock.lock
change:.wireit/6275696c64/lock
add:.next/package.json
change:.next/package.json
add:.next/routes-manifest.json
add:.next/prerender-manifest.js
addDir:.next/cache
addDir:.next/cache/swc
addDir:.next/cache/swc/plugins
addDir:.next/cache/swc/plugins/v7_macos_x86_64_0.104.41
addDir:.wireit/6275696c64/lock.lock
addDir:.next/server
add:.next/server/pages-manifest.json
add:.next/server/app-paths-manifest.json
add:.next/server/chunks/font-manifest.json
add:.next/server/chunks/638.js
add:.next/server/chunks/39.js
add:.next/server/chunks/72.js
add:.next/server/pages/_app.js
add:.next/server/pages/_document.js
add:.next/server/webpack-runtime.js
add:.next/server/pages/_error.js
add:.next/server/app/page.js
add:.next/server/app/_not-found.js
add:.next/server/font-manifest.json
add:.next/server/pages/_error.js.nft.json
add:.next/server/pages/_app.js.nft.json
addDir:.next/server/chunks
addDir:.next/server/app
addDir:.next/server/pages
addDir:.next/server/app/favicon.ico
add:.next/server/app/_not-found.js.nft.json
add:.next/server/app/page.js.nft.json
add:.next/server/pages/_document.js.nft.json
add:.next/server/app/favicon.ico/route.js
add:.next/server/app/favicon.ico/route.js.nft.json
change:.next/server/chunks/font-manifest.json
change:.next/server/chunks/638.js
change:.next/server/chunks/39.js
change:.next/server/chunks/72.js
change:.next/server/pages/_app.js
change:.next/server/webpack-runtime.js
change:.next/server/app/_not-found.js
change:.next/server/pages/_document.js
change:.next/server/font-manifest.json
change:.next/server/pages/_error.js
change:.next/server/app/page.js
change:.next/server/pages/_error.js.nft.json
addDir:.next/types
change:.next/server/pages/_app.js.nft.json
change:.next/server/app/_not-found.js.nft.json
change:.next/server/app/favicon.ico/route.js
addDir:.next/types/app
change:.next/server/app/favicon.ico/route.js.nft.json
change:.next/server/app/page.js.nft.json
add:.next/server/server-reference-manifest.js
change:.next/server/pages/_document.js.nft.json
add:.next/server/server-reference-manifest.json
add:.next/types/app/layout.ts
add:.next/types/app/page.ts
add:.next/types/package.json
addDir:.wireit/6275696c64/lock.lock
addDir:.next/cache/webpack
addDir:.next/cache/webpack/server-production
add:.next/trace
add:.next/cache/webpack/server-production/0.pack
add:.next/cache/webpack/server-production/index.pack
change:.next/server/pages-manifest.json
change:.next/server/app-paths-manifest.json
change:.next/server/server-reference-manifest.js
change:.next/server/server-reference-manifest.json
add:.next/server/middleware-manifest.json
addDir:.wireit/6275696c64/lock.lock
addDir:.next/static
addDir:.next/static/chunks
addDir:.next/static/media
addDir:.next/static/chunks/app
addDir:.next/static/chunks/pages
add:.next/static/media/c9a5bc6a7c948fb0-s.p.woff2
add:.next/static/media/05a31a2ca4975f99-s.woff2
add:.next/static/media/51ed15f9841b9f9d-s.woff2
add:.next/static/media/fd4db3eb5472fc27-s.woff2
add:.next/static/media/ec159349637c90ad-s.woff2
add:.next/static/chunks/main-99238e5788d9f0c5.js
add:.next/static/chunks/main-app-e2656b96ef08fea0.js
add:.next/static/chunks/app/layout-a73282d3ba113627.js
add:.next/static/chunks/pages/_app-75f6107b0260711c.js
add:.next/static/chunks/app/_not-found-4e5c3b73d883060d.js
add:.next/static/chunks/app/page-654a12c662deeb84.js
add:.next/static/chunks/webpack-d34d3464b2f1841d.js
add:.next/static/chunks/pages/_error-9a890acb1e81c3fc.js
add:.next/static/media/513657b02c5c193f-s.woff2
addDir:.next/static/h5gjHlTP3zCd61CyGdae0
add:.next/static/media/d6b16ce4a6175f26-s.woff2
add:.next/react-loadable-manifest.json
add:.next/build-manifest.json
add:.next/app-build-manifest.json
add:.next/static/chunks/fd9d1056-cc48c28d170fddc2.js
add:.next/static/chunks/69-1b6d135f94ac0e36.js
add:.next/static/chunks/749-150359508d286d1e.js
add:.next/static/chunks/polyfills-c67a75d1b6f99dc8.js
add:.next/server/next-font-manifest.js
add:.next/server/middleware-build-manifest.js
add:.next/server/middleware-react-loadable-manifest.js
addDir:.next/static/css
add:.next/server/next-font-manifest.json
add:.next/static/h5gjHlTP3zCd61CyGdae0/_buildManifest.js
add:.next/static/chunks/framework-aec844d2ccbe7592.js
add:.next/static/h5gjHlTP3zCd61CyGdae0/_ssgManifest.js
add:.next/server/app/_not-found_client-reference-manifest.js
add:.next/server/app/page_client-reference-manifest.js
add:.next/static/css/df8ddea784076f40.css
add:.next/static/css/8c04984e96826ffb.css
addDir:.next/cache/webpack/client-production
addDir:.wireit/6275696c64/lock.lock
add:.next/cache/webpack/client-production/0.pack
add:.next/cache/webpack/client-production/index.pack
addDir:.wireit/6275696c64/lock.lock
add:.next/cache/.tsbuildinfo
addDir:.next/cache/eslint
add:.next/cache/eslint/.cache_hj9sqy
add:.next/app-path-routes-manifest.json
add:.next/server/functions-config-manifest.json
add:.next/BUILD_ID
add:.next/required-server-files.json
addDir:.next/export
addDir:.next/export/_next
addDir:.next/export/_next/h5gjHlTP3zCd61CyGdae0
add:.next/export-detail.json
add:.next/server/app/favicon.ico.body
add:.next/server/app/favicon.ico.meta
add:.next/export/404.html
add:.next/export/500.html
add:.next/server/app/_not-found.rsc
change:.next/export-detail.json
add:.next/server/pages/404.html
add:.next/server/app/_not-found.html
add:.next/server/app/_not-found.meta
add:.next/server/app/index.rsc
add:.next/server/app/index.html
add:.next/server/app/index.meta
unlink:.next/export/500.html
add:.next/server/pages/500.html
unlink:.next/export/404.html
change:.next/server/pages-manifest.json
add:.next/prerender-manifest.json
unlinkDir:.next/export/_next/h5gjHlTP3zCd61CyGdae0
unlinkDir:.next/export/_next
unlinkDir:.next/export
change:.next/prerender-manifest.js
change:.next/static/h5gjHlTP3zCd61CyGdae0/_ssgManifest.js
change:.next/prerender-manifest.json
addDir:.wireit/6275696c64/lock.lock
add:.next/images-manifest.json
add:.next/export-marker.json
unlink:.next/export-detail.json
addDir:.wireit/6275696c64/lock.lock
addDir:.wireit/6275696c64/lock.lock
change:.next/server/app/_not-found.js.nft.json
change:.next/server/app/_not-found.js.nft.json
change:.next/server/pages/_app.js.nft.json
change:.next/server/pages/_error.js.nft.json
change:.next/server/app/favicon.ico/route.js.nft.json
change:.next/server/app/page.js.nft.json
change:.next/server/pages/_document.js.nft.json
change:.next/trace
change:.wireit/6275696c64/manifest
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/app-build-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/BUILD_ID
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/build-manifest.json
add:.next/next-server.js.nft.json
add:.next/next-minimal-server.js.nft.json
add:.wireit/6275696c64/fingerprint
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/types
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/swc
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/chunks
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/types/app
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/h5gjHlTP3zCd61CyGdae0
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/eslint
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/swc/plugins
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/css
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/media
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/swc/plugins/v7_macos_x86_64_0.104.41
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/favicon.ico
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack/server-production
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/app
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack/client-production
addDir:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/pages
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/app-path-routes-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack/client-production/0.pack
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/eslint/.cache_hj9sqy
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack/server-production/0.pack
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/.tsbuildinfo
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack/client-production/index.pack
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/export-marker.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/images-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/next-minimal-server.js.nft.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/next-server.js.nft.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/package.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/prerender-manifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/prerender-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/react-loadable-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/required-server-files.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack/server-production/index.pack
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/routes-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app-paths-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/_not-found_client-reference-manifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/_not-found.html
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/_not-found.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/_not-found.js.nft.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/_not-found.meta
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/_not-found.rsc
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/favicon.ico.body
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/favicon.ico.meta
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/favicon.ico/route.js.nft.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/favicon.ico/route.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/index.meta
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/index.html
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/index.rsc
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/page_client-reference-manifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/page.js.nft.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/app/page.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/chunks/638.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/chunks/39.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/chunks/font-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/chunks/72.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/font-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/functions-config-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/middleware-build-manifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/middleware-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/middleware-react-loadable-manifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/next-font-manifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/next-font-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages/_app.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages/_app.js.nft.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages/_document.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages/_document.js.nft.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages/_error.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages/_error.js.nft.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages/404.html
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/pages/500.html
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/server-reference-manifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/server-reference-manifest.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/server/webpack-runtime.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/749-150359508d286d1e.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/69-1b6d135f94ac0e36.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/app/layout-a73282d3ba113627.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/app/_not-found-4e5c3b73d883060d.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/app/page-654a12c662deeb84.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/fd9d1056-cc48c28d170fddc2.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/framework-aec844d2ccbe7592.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/main-app-e2656b96ef08fea0.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/pages/_app-75f6107b0260711c.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/main-99238e5788d9f0c5.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/pages/_error-9a890acb1e81c3fc.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/webpack-d34d3464b2f1841d.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/chunks/polyfills-c67a75d1b6f99dc8.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/css/8c04984e96826ffb.css
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/css/df8ddea784076f40.css
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/h5gjHlTP3zCd61CyGdae0/_buildManifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/h5gjHlTP3zCd61CyGdae0/_ssgManifest.js
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/media/05a31a2ca4975f99-s.woff2
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/media/513657b02c5c193f-s.woff2
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/media/51ed15f9841b9f9d-s.woff2
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/media/c9a5bc6a7c948fb0-s.p.woff2
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/media/ec159349637c90ad-s.woff2
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/media/d6b16ce4a6175f26-s.woff2
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/static/media/fd4db3eb5472fc27-s.woff2
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/types/app/layout.ts
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/types/app/page.ts
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/types/package.json
add:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/trace
change:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack/server-production/0.pack
change:.wireit/6275696c64/cache/3acf2b7c4662511ce8d98930e376d4708ba8b97e1a7a46a0274fe0379305ce83/.next/cache/webpack/client-production/0.pack
unlinkDir:.wireit/6275696c64/lock.lock

And as you can see there is a lot of lock files that get changed in the .wireit directory. Maybe we can ignore the .wireit directory in biome somehow?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants