Skip to content

Commit 1baa888

Browse files
committed
Release braintree-web 3.115.1
1 parent 4bada47 commit 1baa888

File tree

6 files changed

+3476
-7207
lines changed

6 files changed

+3476
-7207
lines changed

.husky/pre-commit

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/bin/bash
22

33
# Ensure all JavaScript files staged for commit pass standard code style
4-
FILES=`git diff --name-only --cached --diff-filter=ACM | grep -E '(js|jsx)$' || true`;
5-
# FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\?$")
4+
FILES=$(git diff --name-only --cached --diff-filter=ACM | grep -E '(js|jsx)$' | grep -Ev '^(tasks\/|test\/)' || true)
65

76
if [ ! -z "$FILES" ]; then
87
for file in $FILES; do
@@ -13,7 +12,7 @@ if [ ! -z "$FILES" ]; then
1312
done
1413

1514
# Prettify all selected files
16-
echo "$FILES" | xargs ./node_modules/.bin/prettier --ignore-unknown --cache --check
15+
echo "$FILES" | xargs ./node_modules/.bin/prettier --ignore-unknown --cache --check
1716
else
18-
echo -e "\033[1;31m You have no staged javascript files, skipping checks .. "
17+
echo -e "\033[1;31m You have no staged javascript files, skipping checks .. \033[0m"
1918
fi

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 3.115.1
4+
5+
- Update restricted-input to v4.0.3
6+
- Update dependencies
7+
- UglifyJS to 3.19.3
8+
- Update browserify task
9+
- Setting UglifyJS `arrows` option to `false`
10+
311
## 3.115.0
412

513
- Docs update

0 commit comments

Comments
 (0)