From c7c7495a8c51b8a0d3055f16d6e51d2b4cbb18e2 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Tue, 13 Dec 2022 14:30:16 +0200 Subject: [PATCH] fix compile-library script Signed-off-by: Jari Kolehmainen --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6945ecc71e..551cd7c7fa 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "dev-run": "nodemon --watch ./static/build/main.js --exec \"electron --remote-debugging-port=9223 --inspect .\"", "dev:main": "yarn run compile:main --watch --progress", "dev:renderer": "yarn run ts-node webpack/dev-server.ts", - "compile-library": "env NODE_ENV=production yarn run webpack --config webpack/library.ts", + "compile-library": "env NODE_ENV=production yarn run webpack --config webpack/library-bundle.ts", "compile": "env NODE_ENV=production concurrently yarn:compile:*", "compile:main": "yarn run webpack --config webpack/main.ts", "compile:renderer": "yarn run webpack --config webpack/renderer.ts",