mirror of
https://github.com/standardnotes/app
synced 2026-08-02 03:18:08 -04:00
15 lines
286 B
Bash
Executable File
15 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo 'Building components from' $(pwd)
|
|
|
|
# Exit immediately after an error in any command
|
|
set -xe
|
|
|
|
yarn clean && yarn build:components
|
|
|
|
echo "Packaging component assets and zips..."
|
|
|
|
node scripts/package.mjs
|
|
git add dist
|
|
(git commit -m 'chore(release): components') || true
|