[O] Build before deploying npm

This commit is contained in:
Hykilpikonna
2022-12-20 16:20:41 -05:00
parent e5585e7858
commit 1eaf58478c
+4
View File
@@ -6,5 +6,9 @@ set -e
# Check if package.json is present
[[ ! -f "package.json" ]] && echo "package.json not found, please make sure you're in the correct path" && exit -1
# Build
[[ -f "yarn.lock" ]] && yarn build
[[ -f "package-lock.json" ]] && npm build
# Deploy npm
npm publish