aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-18 21:36:12 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-18 21:36:12 -0800
commit5f80f9c81496ad817a09f9cfc35e467e1e9b39e2 (patch)
tree9bff490d8554cfd5ce13552ca49d0ab20668f822
parent0cee57f1d997fe21e519d5e771df0877ab489d5f (diff)
downloadbun-5f80f9c81496ad817a09f9cfc35e467e1e9b39e2.tar.gz
bun-5f80f9c81496ad817a09f9cfc35e467e1e9b39e2.tar.zst
bun-5f80f9c81496ad817a09f9cfc35e467e1e9b39e2.zip
cross-promotion
-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,
);