Update to latest @extollo/lib & add contact API

This commit is contained in:
2022-11-14 19:49:34 -06:00
parent 155886eb39
commit ac1d221f38
11 changed files with 1010 additions and 575 deletions

11
ex
View File

@@ -135,14 +135,5 @@ if [ ! -d "./node_modules" ]; then
echo ""
printf "\033[32m✓\033[39m Looks like you're all set up! Run this command again to access the Extollo CLI.\n"
else
start_spinner "Building your app..."
BUILD_OUTPUT="$($ENV_PNPM run build 2>&1)"
BUILD_EC=$?
stop_spinner $BUILD_EC
if [ $BUILD_EC -ne 0 ]; then
printf "\033[31m✘\033[39m Uh, oh! Looks like your application failed to build. (exit: $BUILD_EC)"
echo "$BUILD_OUTPUT"
exit $BUILD_EC
fi
"$ENV_NODE" --experimental-repl-await ./lib/cli.js $@
"$ENV_PNPM" cli "$@"
fi