10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
echo "Preparing package.json for distribution"
|
|
bash scripts/prepare-package-json.sh
|
|
|
|
echo "Pre-publish done" |