Skip to content

Commit

Permalink
Release braintree-web 3.115.1
Browse files Browse the repository at this point in the history
  • Loading branch information
braintreeps committed Feb 10, 2025
1 parent 4bada47 commit 1baa888
Show file tree
Hide file tree
Showing 6 changed files with 3,476 additions and 7,207 deletions.
7 changes: 3 additions & 4 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/bin/bash

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

if [ ! -z "$FILES" ]; then
for file in $FILES; do
Expand All @@ -13,7 +12,7 @@ if [ ! -z "$FILES" ]; then
done

# Prettify all selected files
echo "$FILES" | xargs ./node_modules/.bin/prettier --ignore-unknown --cache --check
echo "$FILES" | xargs ./node_modules/.bin/prettier --ignore-unknown --cache --check
else
echo -e "\033[1;31m You have no staged javascript files, skipping checks .. "
echo -e "\033[1;31m You have no staged javascript files, skipping checks .. \033[0m"
fi
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 3.115.1

- Update restricted-input to v4.0.3
- Update dependencies
- UglifyJS to 3.19.3
- Update browserify task
- Setting UglifyJS `arrows` option to `false`

## 3.115.0

- Docs update
Expand Down
Loading

0 comments on commit 1baa888

Please sign in to comment.