Currently commands within build script are not chained so if one fail, all other will run that could lead to mistunderstanding, that all is working fine when no...
8 lines
127 B
Bash
Executable File
8 lines
127 B
Bash
Executable File
#!/bin/bash
|
|
tsc \
|
|
&& yarn build-theme \
|
|
&& vite build \
|
|
&& yarn build-fonts \
|
|
&& yarn build-icons \
|
|
&& cp -R src/locales dist/
|