Skip to content

Commit

Permalink
chore(mou-release-action): [MPI-582] updated dependencies (#105)
Browse files Browse the repository at this point in the history
Co-authored-by: raphaelluchini <rluchini@minddoc.de>
  • Loading branch information
raphaelluchini and raphaelluchini authored Sep 27, 2023
1 parent 028537a commit 5c85313
Show file tree
Hide file tree
Showing 1,690 changed files with 27,035 additions and 25,105 deletions.
5 changes: 5 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,10 @@ module.exports = {
'node/no-missing-import': 'off',
'one-var': 'off',
semi: ['error', 'always'],
'jest/no-alias-methods': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'typescript-eslint/no-unsafe-enum-comparison': 'off',
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
'@typescript-eslint/no-unsafe-call': 'off'
},
};
18 changes: 12 additions & 6 deletions .husky/_/husky.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#!/bin/sh
#!/usr/bin/env sh
if [ -z "$husky_skip_init" ]; then
debug () {
[ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1"
if [ "$HUSKY_DEBUG" = "1" ]; then
echo "husky (debug) - $1"
fi
}

readonly hook_name="$(basename "$0")"
readonly hook_name="$(basename -- "$0")"
debug "starting $hook_name..."

if [ "$HUSKY" = "0" ]; then
Expand All @@ -17,14 +19,18 @@ if [ -z "$husky_skip_init" ]; then
. ~/.huskyrc
fi

export readonly husky_skip_init=1
readonly husky_skip_init=1
export husky_skip_init
sh -e "$0" "$@"
exitCode="$?"

if [ $exitCode != 0 ]; then
echo "husky - $hook_name hook exited with code $exitCode (error)"
exit $exitCode
fi

exit 0
if [ $exitCode = 127 ]; then
echo "husky - command not found in PATH=$PATH"
fi

exit $exitCode
fi
6 changes: 3 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn pretty-quick --staged && yarn build
yarn build
20,421 changes: 20,421 additions & 0 deletions .pnp.cjs

Large diffs are not rendered by default.

20,958 changes: 0 additions & 20,958 deletions .pnp.js

This file was deleted.

Loading

0 comments on commit 5c85313

Please sign in to comment.