diff options
author | 2023-08-11 22:13:46 -0700 | |
---|---|---|
committer | 2023-08-11 22:13:46 -0700 | |
commit | ca26780b276d32f761af37f113ca24aeeb41e92f (patch) | |
tree | c6127569c4ad0b74e6216f63f663ae44d058d9f3 /src/install | |
parent | 117cee5ca5c36f78ae75a0dee3178620bba73968 (diff) | |
download | bun-ca26780b276d32f761af37f113ca24aeeb41e92f.tar.gz bun-ca26780b276d32f761af37f113ca24aeeb41e92f.tar.zst bun-ca26780b276d32f761af37f113ca24aeeb41e92f.zip |
Deprecate loading `node_modules.bun` (#4131)
* Deprecate loading `node_modules.bun`
* realpath
* regenerate schema
* More
* more
* Update cli.zig
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/install')
-rw-r--r-- | src/install/install.zig | 2 | ||||
-rw-r--r-- | src/install/lockfile.zig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/install/install.zig b/src/install/install.zig index 38f2ae11f..d444b62fc 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -26,7 +26,7 @@ const configureTransformOptionsForBun = @import("../bun.js/config.zig").configur const Command = @import("../cli.zig").Command; const BunArguments = @import("../cli.zig").Arguments; const bundler = bun.bundler; -const NodeModuleBundle = @import("../node_module_bundle.zig").NodeModuleBundle; + const DotEnv = @import("../env_loader.zig"); const which = @import("../which.zig").which; const Run = @import("../bun_js.zig").Run; diff --git a/src/install/lockfile.zig b/src/install/lockfile.zig index e293b2213..8eb411739 100644 --- a/src/install/lockfile.zig +++ b/src/install/lockfile.zig @@ -29,7 +29,7 @@ const configureTransformOptionsForBun = @import("../bun.js/config.zig").configur const Command = @import("../cli.zig").Command; const BunArguments = @import("../cli.zig").Arguments; const bundler = bun.bundler; -const NodeModuleBundle = @import("../node_module_bundle.zig").NodeModuleBundle; + const DotEnv = @import("../env_loader.zig"); const which = @import("../which.zig").which; const Run = @import("../bun_js.zig").Run; |