* add validateflow function * cleaner code * preprocess json * cleaning * create specific package * cleaning * add tests
12 lines
186 B
Bash
Executable File
12 lines
186 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}
|