From b92c14a1fb10ac73ebcad7a69582750ea8f911f2 Mon Sep 17 00:00:00 2001
From: Matthias Konitzny <konitzny@ibr.cs.tu-bs.de>
Date: Wed, 4 Aug 2021 15:56:48 +0200
Subject: [PATCH] Improved build configuration.

---
 package.json | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 40c99cc..016ab5e 100644
--- a/package.json
+++ b/package.json
@@ -4,19 +4,25 @@
   "description": "A Wordpress-Plugin to display knowledge in a graph-structured way.",
   "main": "index.js",
   "debug": "build/debug/graph.js",
-  "release": "build/debug/graph.js",
+  "release": "build/release/graph.js",
   "targets": {
     "main": false,
     "debug": {
       "distDir": "build/debug/"
     },
     "release": {
-      "distDir": "build/release/"
+      "distDir": "build/release/",
+      "sourceMap": false,
+      "optimize": true,
+      "includeNodeModules": ["three", "3d-force-graph"],
+      "isLibrary": true,
+      "context": "node"
     }
   },
   "scripts": {
     "test": "echo \"Error: no test specified\" && exit 1",
-    "watch": "parcel watch index.js"
+    "watch": "parcel watch index.js",
+    "build": "parcel build index.js --target release"
   },
   "repository": {
     "type": "git",
-- 
GitLab