From a3fd852e25f9490ee04c664629894ae53cc678e5 Mon Sep 17 00:00:00 2001 From: Jaya Krishna Namburu Date: Sat, 9 Dec 2023 13:30:21 +0530 Subject: [PATCH] feat: Allow resolutions flag to build command (#2556) --- src/cli.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli.ts b/src/cli.ts index c0df4c43..33045cb7 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -293,6 +293,7 @@ Clears the global module fetch cache, for situations where the contents of a dep cli .command("build [entry]", "Build the module using importmap") + .option(...resolutionOpt) .option(...mapOpt) .option(...buildConfigOpt) .option(...buildOutputOpt)