12 lines
211 B
Bash
12 lines
211 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
cd client/src/standalone/player
|
||
|
|
||
|
rm -rf dist build && tsc -p . && ../../../node_modules/.bin/webpack --config ./webpack.config.js
|
||
|
|
||
|
npm publish --access public
|
||
|
|
||
|
rm -rf dist build node_modules
|