From 96e7e45345a5314deca2d02bd3071656dd30a020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Sat, 5 Mar 2022 14:48:13 -0800 Subject: [PATCH] Fix clean target in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c4c86e..c42ec2a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ SRC_DEPS = src/index.tsx src/third-party/qrcodegen/index.ts -CFG_DEPS = yarn.lock package.json +CFG_DEPS = yarn.lock package.json tsup.config.ts all: lib/index.js lib/index.d.ts lib/index.js examples/iife/demo.js @@ -19,4 +19,4 @@ examples/iife/demo.js: lib/esm/index.js examples/demo.tsx yarn run build:examples clean: - rm -rf lib examples/bundle.js + rm -rf lib examples/iife/demo.js