From 176085e7a1c907318a305668025b6d819009847d Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Sun, 17 May 2020 16:53:23 +0200 Subject: [PATCH] packages/cli: skip caching of plugin builds --- packages/cli/src/commands/plugin/build.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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(); };