10 lines
137 B
Bash
Executable file
10 lines
137 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cd client/src/standalone/embed-player-api
|
|
|
|
npm run build
|
|
npm publish --access public
|
|
|
|
rm -rf dist build node_modules
|