* 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>
11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo 'Building components from' $(pwd)
|
|
|
|
yarn clean && yarn build
|
|
|
|
echo "Packaging component assets and zips..."
|
|
|
|
node scripts/package.mjs
|
|
git add dist
|
|
(git commit -m 'chore(release): components') || true |