You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2022/01/26 21:08:08 UTC

[incubator-streampipes] 01/06: Add npm scripts for plain config

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch experimental-module-federation
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit 3071aa96fcf3cda955704b1981164928d4852730
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Tue Jan 25 22:47:22 2022 +0100

    Add npm scripts for plain config
---
 ui/package.json | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ui/package.json b/ui/package.json
index 3c56594..b0696ee 100644
--- a/ui/package.json
+++ b/ui/package.json
@@ -10,6 +10,9 @@
   "scripts": {
     "start": "node ./deployment/prebuild.js && ng serve",
     "test": "node ./deployment/prebuild.js && ng test",
+    "start-plain": "ng serve",
+    "build-plain": "set NODE_OPTIONS=--max-old-space-size=10192 && ng build --configuration production",
+    "run-prebuild-script": "node ./deployment/prebuild.js",
     "build": "node ./deployment/prebuild.js && set NODE_OPTIONS=--max-old-space-size=10192 && ng build --configuration production",
     "build-dev": "node ./deployment/prebuild.js && set NODE_OPTIONS=--max-old-space-size=10192 && ng build",
     "build-rc": "node ./deployment/prebuild.js rel && set NODE_OPTIONS=--max-old-space-size=10192 && ng build --configuration production",