diff --git a/cli/plasmo/src/commands/build.ts b/cli/plasmo/src/commands/build.ts index b0444f488..610a65f79 100644 --- a/cli/plasmo/src/commands/build.ts +++ b/cli/plasmo/src/commands/build.ts @@ -27,6 +27,8 @@ async function build() { const bundleConfig = getBundleConfig() + iLog("Building for target:", bundleConfig.target) + const plasmoManifest = await createManifest(bundleConfig) const bundler = await createParcelBuilder(plasmoManifest, { diff --git a/cli/plasmo/src/commands/dev.ts b/cli/plasmo/src/commands/dev.ts index 9ed147963..e279d067b 100644 --- a/cli/plasmo/src/commands/dev.ts +++ b/cli/plasmo/src/commands/dev.ts @@ -39,6 +39,8 @@ async function dev() { const bundleConfig = getBundleConfig() + iLog("Building for target:", bundleConfig.target) + const plasmoManifest = await createManifest(bundleConfig) const projectWatcher = await createProjectWatcher(plasmoManifest)