From 87314b7b426f0a5a9db496005f2aa7a5ee298fd4 Mon Sep 17 00:00:00 2001 From: KGrzeg Date: Sun, 17 Oct 2021 13:12:51 +0200 Subject: [PATCH] Disable sourcemaps in prod --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 14a850b..0c50e6b 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Simple Phaser 3 game for the Hackerspace Trójmiasto's little game jam", "scripts": { "start": "parcel src/index.html -p 8000", - "build": "parcel build src/index.html --out-dir dist", + "build": "parcel build src/index.html --out-dir dist --no-source-maps", "test": "echo \"Error: no test specified\" && exit 1", "lint": "eslint ./src --ext .js,.jsx,.ts,.tsx" },