packages/cli: skip caching of plugin builds

This commit is contained in:
Patrik Oldsberg
2020-05-17 16:53:23 +02:00
parent 1dd33e8e33
commit 176085e7a1
+1 -4
View File
@@ -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();
};