From 9d629ae0130d8e742decdd144d0ea4f6699f59ba Mon Sep 17 00:00:00 2001 From: Jiachi Liu Date: Sun, 21 Nov 2021 14:30:24 +0100 Subject: [PATCH] build: output without minification --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 63adb8f14..b167d30d1 100644 --- a/package.json +++ b/package.json @@ -41,9 +41,9 @@ "watch:core": "node scripts/watch.js core", "watch:infinite": "node scripts/watch.js infinite", "watch:immutable": "node scripts/watch.js immutable", - "build:core": "bunchee src/index.ts -m --no-sourcemap", - "build:infinite": "bunchee index.ts --cwd infinite -m --no-sourcemap", - "build:immutable": "bunchee index.ts --cwd immutable -m --no-sourcemap", + "build:core": "bunchee src/index.ts --no-sourcemap", + "build:infinite": "bunchee index.ts --cwd infinite --no-sourcemap", + "build:immutable": "bunchee index.ts --cwd immutable --no-sourcemap", "prepublishOnly": "yarn clean && yarn build", "publish-beta": "yarn publish --tag beta", "types:check": "tsc --noEmit --project tsconfig.check.json && tsc --noEmit -p test",