diff options
Diffstat (limited to 'scripts/release-embed-api.sh')
-rwxr-xr-x | scripts/release-embed-api.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/release-embed-api.sh b/scripts/release-embed-api.sh new file mode 100755 index 000000000..ae76a65f5 --- /dev/null +++ b/scripts/release-embed-api.sh | |||
@@ -0,0 +1,11 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | cd client/src/standalone/player | ||
6 | |||
7 | rm -rf dist build && tsc -p . && ../../../node_modules/.bin/webpack --config ./webpack.config.js | ||
8 | |||
9 | npm publish --access public | ||
10 | |||
11 | rm -rf dist build node_modules | ||