From 8670f96d21f6ef8a4c1c96dc41110ada15983a90 Mon Sep 17 00:00:00 2001 From: Fabio Pliger Date: Mon, 16 May 2022 10:58:02 -0500 Subject: [PATCH] remove terser since it's breaking specific examples (#395) --- pyscriptjs/rollup.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyscriptjs/rollup.config.js b/pyscriptjs/rollup.config.js index d7dab9d4..bc419440 100644 --- a/pyscriptjs/rollup.config.js +++ b/pyscriptjs/rollup.config.js @@ -84,7 +84,7 @@ export default { file: "examples/build/pyscript.min.js", format: "iife", sourcemap: true, - plugins: [terser()], + // plugins: [terser()], }, ], plugins: [ @@ -113,7 +113,7 @@ export default { copyPythonFiles("./src/", "./examples/build", true), !production && serve(), !production && livereload("public"), - production && terser(), + // production && terser(), !production && serve({ port: 8080, contentBase: 'examples'}