fix: build components with dependencies (#1132)

* fix: build components with dependencies

* fix: exclude @standardnotes/components-meta

* chore: update yarn.lock

* fix: remove compile script from VERSION.sh

* fix: skip lint script

* fix: components script names

* fix: build script for components

* fix: run tsc within build script

Co-authored-by: Johnny Almonte <johnny243@users.noreply.github.com>
This commit is contained in:
Johnny A
2022-06-21 20:13:26 -04:00
committed by GitHub
parent f1573e7112
commit 7b51131082
6 changed files with 21 additions and 19 deletions

View File

@@ -9,7 +9,7 @@
"scripts": {
"start": "http-server . --cors -p8001 & webpack --progress --config webpack.dev.js",
"components:compile": "webpack --config webpack.prod.js",
"skip:components:lint": "eslint src --ext .js",
"skip:components:lint": "eslint ./src --ext .js",
"components:lint:fix": "yarn lint --fix",
"components:clean": "rm -rf ./vendor"
},