From c8d91d8d69823c04f2e73e9cf65cea2fb9a86832 Mon Sep 17 00:00:00 2001 From: Lokesh Dhakar Date: Sat, 3 Aug 2019 23:21:28 -0700 Subject: [PATCH] build: Don't output sourcemaps --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4051ca4..9312cb2 100644 --- a/package.json +++ b/package.json @@ -28,8 +28,8 @@ "umd:main": "dist/color-thief.umd.js", "amdName": "ColorThief", "scripts": { - "build": "microbundle; node ./build/build.js", - "watch": "microbundle watch", + "build": "microbundle --no-sourcemap; node ./build/build.js", + "watch": "microbundle watch --no-sourcemap", "dev": " ./node_modules/http-server/bin/http-server", "test": "mocha; ./node_modules/.bin/cypress run --config video=false", "test:browser": "./node_modules/.bin/cypress open",