8 lines
180 B
Bash
8 lines
180 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -e
|
||
|
|
cd apps/web
|
||
|
|
npm run build-storybook
|
||
|
|
npx lost-pixel update
|
||
|
|
echo "Baselines updated in apps/web/.lostpixel/baselines/"
|
||
|
|
echo "Don't forget to commit them."
|