repo.or.cz
/
KisSync.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bump path-parse from 1.0.6 to 1.0.7
[KisSync.git]
/
postinstall.sh
blob
4a0c79c636cfe1f5c40578f32c097a406a55564c
1
#!/bin/sh
2
3
set -e
4
5
if
!
command -v
npm
>/
dev
/
null
;
then
6
echo
"Could not find npm in \
$PATH
"
7
exit
1
8
fi
9
10
echo
"Building from src/ to lib/"
11
npm run build-server
12
echo
"Building from player/ to www/js/player.js"
13
npm run build-player
14
echo
"Done"