mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
832d120e6c
* better error message * add back ext after publishing * add back ext
13 lines
208 B
Bash
Executable File
13 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
set -eou pipefail
|
|
script_dirpath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
args=${1:-}
|
|
|
|
rm -rf "${script_dirpath}/dist"
|
|
|
|
npm install
|
|
npm run build
|
|
npm publish ${args}
|
|
./remove-ts-ext.sh -r
|