feat: Add build scripts for plugings.

This commit is contained in:
Gervwyk 2022-02-07 08:48:54 +02:00
parent 0ab9013754
commit d37db36280

View File

@ -32,6 +32,10 @@
"scripts": {
"build": "lerna run build",
"build:dev": "NODE_ENV=development lerna run build",
"build:plugins": "yarn build:blocks && yarn build:connections && yarn build:operators",
"build:blocks": "lerna run --scope '@lowdefy/blocks-*' build",
"build:connections": "lerna run --scope '@lowdefy/connection-*' build",
"build:operators": "lerna run --scope '@lowdefy/operators-*' build",
"clean": "lerna run clean",
"lerna:version": "lerna version --no-git-tag-version",
"lerna:publish": "lerna publish from-git",