diff --git a/packages/cli/src/commands/plugin/build.ts b/packages/cli/src/commands/plugin/build.ts index 9af79028f4..561d79ed55 100644 --- a/packages/cli/src/commands/plugin/build.ts +++ b/packages/cli/src/commands/plugin/build.ts @@ -14,11 +14,8 @@ * limitations under the License. */ -import { withCache, getDefaultCacheOptions } from '../../lib/buildCache'; import { buildPackage } from '../../lib/packager'; export default async () => { - await withCache(getDefaultCacheOptions(), async () => { - await buildPackage(); - }); + await buildPackage(); };