aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bundler.zig4
-rw-r--r--src/linker.zig2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/bundler.zig b/src/bundler.zig
index 54b007c06..a69100103 100644
--- a/src/bundler.zig
+++ b/src/bundler.zig
@@ -1663,7 +1663,7 @@ pub const Bundler = struct {
&source,
import_record.range,
this.allocator,
- "Could not resolve: \"{s}\". Maybe you need to \"npm install\" (or yarn/pnpm)?",
+ "Could not resolve: \"{s}\". Maybe you need to \"bun install\"?",
.{import_record.path.text},
import_record.kind,
);
@@ -2088,7 +2088,7 @@ pub const Bundler = struct {
&source,
import_record.range,
this.allocator,
- "Could not resolve: \"{s}\". Maybe you need to \"npm install\" (or yarn/pnpm)?",
+ "Could not resolve: \"{s}\". Maybe you need to \"bun install\"?",
.{import_record.path.text},
import_record.kind,
);
diff --git a/src/linker.zig b/src/linker.zig
index 48a715927..5c6f56179 100644
--- a/src/linker.zig
+++ b/src/linker.zig
@@ -354,7 +354,7 @@ pub const Linker = struct {
&result.source,
import_record.range,
linker.allocator,
- "Could not resolve: \"{s}\". Maybe you need to \"npm install\" (or yarn/pnpm)?",
+ "Could not resolve: \"{s}\". Maybe you need to \"bun install\"?",
.{import_record.path.text},
import_record.kind,
);