@bigbinary/neeto-audit-frontend 2.0.15 → 2.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,6 +15,7 @@ const DEV_DEPENDENCIES = {
15
15
  "babel-plugin-istanbul": "^6.1.1",
16
16
  "babel-plugin-js-logger": "1.0.17",
17
17
  "babel-plugin-macros": "3.1.0",
18
+ "babel-plugin-module-resolver": "^5.0.0",
18
19
  "babel-plugin-preval": "^5.1.0",
19
20
  "babel-plugin-transform-imports": "^2.0.0",
20
21
  "babel-plugin-transform-react-remove-prop-types": "0.4.24",
package/dist/index.js CHANGED
@@ -16113,6 +16113,7 @@ const DEV_DEPENDENCIES$4 = {
16113
16113
  "babel-plugin-istanbul": "^6.1.1",
16114
16114
  "babel-plugin-js-logger": "1.0.17",
16115
16115
  "babel-plugin-macros": "3.1.0",
16116
+ "babel-plugin-module-resolver": "^5.0.0",
16116
16117
  "babel-plugin-preval": "^5.1.0",
16117
16118
  "babel-plugin-transform-imports": "^2.0.0",
16118
16119
  "babel-plugin-transform-react-remove-prop-types": "0.4.24",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-audit-frontend",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
4
4
  "description": "Audits neeto frontend codebase for issues and suggests a fix.",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
@@ -1,36 +0,0 @@
1
- #!/usr/bin/env sh
2
- if [ -z "$husky_skip_init" ]; then
3
- debug () {
4
- if [ "$HUSKY_DEBUG" = "1" ]; then
5
- echo "husky (debug) - $1"
6
- fi
7
- }
8
-
9
- readonly hook_name="$(basename -- "$0")"
10
- debug "starting $hook_name..."
11
-
12
- if [ "$HUSKY" = "0" ]; then
13
- debug "HUSKY env variable is set to 0, skipping hook"
14
- exit 0
15
- fi
16
-
17
- if [ -f ~/.huskyrc ]; then
18
- debug "sourcing ~/.huskyrc"
19
- . ~/.huskyrc
20
- fi
21
-
22
- readonly husky_skip_init=1
23
- export husky_skip_init
24
- sh -e "$0" "$@"
25
- exitCode="$?"
26
-
27
- if [ $exitCode != 0 ]; then
28
- echo "husky - $hook_name hook exited with code $exitCode (error)"
29
- fi
30
-
31
- if [ $exitCode = 127 ]; then
32
- echo "husky - command not found in PATH=$PATH"
33
- fi
34
-
35
- exit $exitCode
36
- fi