Disable sourcemaps in prod

This commit is contained in:
KGrzeg 2021-10-17 13:12:51 +02:00
parent d35d53ba45
commit 87314b7b42

View file

@ -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"
},