Skip to content

Commit

Permalink
chore: simplify contribution process V2
Browse files Browse the repository at this point in the history
Ref: #259
Signed-off-by: Tomas Dvorak <[email protected]>
  • Loading branch information
Tomas2D committed Dec 23, 2024
1 parent 6583171 commit 6332b0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
yarn lint-staged
CI=true yarn docs:check && yarn lint && yarn format && yarn ts:check && yarn run test:unit && yarn copyright:check
CI=true yarn copyright:check && yarn docs:check && yarn lint && yarn format && yarn ts:check && yarn run test:unit
2 changes: 1 addition & 1 deletion scripts/copyright.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -e
if [ "$#" -eq 0 ]; then
TARGETS=('src/**/*.{js,ts,proto}' "dist/**/*.js" "tests/**/*.{js,ts}" "scripts/**/*.{sh,ts,js}")
else
TARGETS=("$@")
TARGETS=("${@/#$PWD\//}")
fi

# Path to the package.json file
Expand Down

0 comments on commit 6332b0c

Please sign in to comment.