Skip to content

Commit 3eca0d0

Browse files
committed
test
1 parent ee2d6a4 commit 3eca0d0

5 files changed

Lines changed: 16 additions & 5 deletions

File tree

.husky/pre-commit

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
yarn lint-staged
2-
yarn build
1+
yarn lint-staged

.husky/pre-push

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
yarn build
2+
3+
if [git diff --quiet -- scripts/processout.js] && [git diff --quiet -- scripts/modal.js]; then
4+
exit 0
5+
else
6+
echo "Changes detected in scripts. Adding them to the commit."
7+
8+
git add scripts/processout.js
9+
git add scripts/modal.js
10+
11+
git commit --amend --no-edit
12+
fi

scripts/modal.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/processout.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/processout/processout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface apiRequestOptions {
1717
*/
1818
module ProcessOut {
1919
export const DEBUG = false;
20-
export const TestModePrefix = "test-";
20+
export const TestModePrefix = "tssest-";
2121

2222
/**
2323
* ProcessOut main class

0 commit comments

Comments
 (0)