Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 95e8cae

Browse files
committed
husky test
1 parent 4bdc91d commit 95e8cae

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@
1313
"lint": "turbo run lint",
1414
"dev": "turbo run dev",
1515
"run-frontend": "yarn --cwd packages/frontend start",
16-
"run-cms": "yarn --cwd packages/cms start"
16+
"run-cms": "yarn --cwd packages/cms start",
17+
"prepare": "husky install"
1718
},
1819
"devDependencies": {
19-
"turbo": "^1.4.2",
2020
"husky": "^8.0.1",
21-
"lint-staged": "^13.0.3"
21+
"lint-staged": "^13.0.3",
22+
"turbo": "^1.4.2"
2223
},
2324
"lint-staged": {
2425
"*.{js,jsx,ts,tsx,json,md,html,graphql}": "prettier --write"
2526
}
26-
}
27+
}

packages/frontend/src/Components/Intro/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const IntroComponent = () => {
1515
useEffect(() => {
1616
setTimeout(() => {
1717
setShowImages(true);
18+
console.log('test');
1819
}, 1000);
1920
}, []);
2021

0 commit comments

Comments
 (0)