diff options
author | 2021-12-27 18:06:31 -0800 | |
---|---|---|
committer | 2021-12-27 18:06:31 -0800 | |
commit | 336a4b6ac2b4a8ee9a5c972f3d74bfff8eca13e6 (patch) | |
tree | f0d56c9f4ea3b318c9c9e635969de46b48d226d5 /src/options.zig | |
parent | c9c7521f4f6763dac8c5910ffcf2451c4c2f60d8 (diff) | |
download | bun-336a4b6ac2b4a8ee9a5c972f3d74bfff8eca13e6.tar.gz bun-336a4b6ac2b4a8ee9a5c972f3d74bfff8eca13e6.tar.zst bun-336a4b6ac2b4a8ee9a5c972f3d74bfff8eca13e6.zip |
Prepare to run unit tests & remove some dead code (#92)
* Remove some dead code
* :skull: code
* Fix the zig tests
* [JS Printer] Print integers faster & less scientific notation on decimals
* :skull: dead code
* skip
* Run all the unit tests
Diffstat (limited to '')
-rw-r--r-- | src/options.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.zig b/src/options.zig index 33950cf4d..357bafedf 100644 --- a/src/options.zig +++ b/src/options.zig @@ -3,7 +3,7 @@ const std = @import("std"); const logger = @import("logger.zig"); const Fs = @import("fs.zig"); -const alloc = @import("alloc.zig"); + const resolver = @import("./resolver/resolver.zig"); const api = @import("./api/schema.zig"); const Api = api.Api; |