Skip to main content
Module

x/samlify/.pre-commit.sh

πŸ” Node.js API for Single Sign On (SAML 2.0)
Go to Latest
File
echo "Linting"npm run lintLINTRESULT=$?
echo "Compiling"$(npm bin)/tscBUILDRESULT=$?
if [[ $LINTRESULT -ne 0 || $BUILDRESULT -ne 0 ]]; then echo "Fix errors before commit" exit 1else echo "Ok to commit" exit 0fi