mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-11-20 11:36:24 +01:00
8 lines
146 B
Bash
8 lines
146 B
Bash
|
VERSION=$(jq -r ".version" package.json)
|
||
|
PACKAGE=hydrogen-web-$VERSION.tar.gz
|
||
|
yarn build
|
||
|
pushd target
|
||
|
tar -czvf ../$PACKAGE ./
|
||
|
popd
|
||
|
echo $PACKAGE
|