diff options
author | 2021-08-23 02:41:36 -0700 | |
---|---|---|
committer | 2021-08-23 02:41:36 -0700 | |
commit | 04467b82d3a8c10f17ff0844f8d5e844336b1917 (patch) | |
tree | 6d324ce99e4fb5bb787445e8e906053f537345ca | |
parent | a3cfd26125bbb5fdb2872c1b3d511ccbf6f3fc4c (diff) | |
download | bun-04467b82d3a8c10f17ff0844f8d5e844336b1917.tar.gz bun-04467b82d3a8c10f17ff0844f8d5e844336b1917.tar.zst bun-04467b82d3a8c10f17ff0844f8d5e844336b1917.zip |
Disable verbose fs
Former-commit-id: dc7b2c059f3db6ca4f0e91d659b7a7269ed60263
-rw-r--r-- | .vscode/launch.json | 21 | ||||
-rw-r--r-- | src/feature_flags.zig | 2 |
2 files changed, 20 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index dfcd51e93..dd4349d2c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -137,15 +137,32 @@ { "type": "lldb", "request": "launch", + "name": "Mixed case resolve", + "program": "${workspaceFolder}/build/debug/macos-x86_64/bun", + "args": [ + "build", + "./index.js", + "--origin=http://localhost:9000/", + // "--use=./bun-framework-next", + "--platform=browser" + ], + "cwd": "${workspaceFolder}/examples/lotta-modules/", + "console": "internalConsole" + }, + + { + "type": "lldb", + "request": "launch", "name": "Demo Build .bun", "program": "${workspaceFolder}/build/debug/macos-x86_64/bun", "args": [ "bun", + "./index.js", "--origin=http://localhost:9000/", - "--use=bun-framework-next", + // "--use=./bun-framework-next", "--platform=browser" ], - "cwd": "${workspaceFolder}/examples/hello-next", + "cwd": "${workspaceFolder}/examples/lotta-modules/", "console": "internalConsole" }, { diff --git a/src/feature_flags.zig b/src/feature_flags.zig index 1efb55a10..1efd806e8 100644 --- a/src/feature_flags.zig +++ b/src/feature_flags.zig @@ -34,7 +34,7 @@ pub const css_supports_fence = true; pub const enable_entry_cache = true; pub const enable_bytecode_caching = false; -pub const verbose_fs = true; +pub const verbose_fs = false; pub const watch_directories = true; |