mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-24 02:24:18 +03:00
added single command to build interface files
This commit is contained in:
parent
e92bbec269
commit
4f6e1fe229
3
Makefile
3
Makefile
@ -23,6 +23,9 @@ pills:
|
||||
sh/update-brass-pill
|
||||
sh/update-ivory-pill
|
||||
|
||||
interface:
|
||||
sh/build-interface
|
||||
|
||||
clean:
|
||||
rm -rf ./out ./work
|
||||
rm -f result result-*
|
||||
|
17
sh/build-interface
Executable file
17
sh/build-interface
Executable file
@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -ex
|
||||
|
||||
cd pkg/interface/chat
|
||||
gulp bundle-prod &
|
||||
cd ../launch
|
||||
gulp bundle-prod &
|
||||
cd ../clock
|
||||
gulp bundle-prod &
|
||||
cd ../publish
|
||||
gulp bundle-prod &
|
||||
cd ../weather
|
||||
gulp bundle-prod &
|
||||
cd ../../../
|
||||
|
||||
set +x
|
Loading…
Reference in New Issue
Block a user