Skip to content

Commit 9c02747

Browse files
committed
fix: try to modify dummy package to trigger build 2
also reverts husky to v9 to see if its about that
1 parent 1f811cd commit 9c02747

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

.husky/pre-commit

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
14
npx lint-staged

package-lock.json

+10-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"homepage": "https://apify.com",
2929
"scripts": {
30-
"postinstall": "husky",
30+
"postinstall": "husky install",
3131
"prepublishOnly": "lerna run copy",
3232
"clean": "lerna run clean",
3333
"build": "lerna run build",
@@ -63,7 +63,7 @@
6363
"commitlint": "^18.0.0",
6464
"deploy-web-to-s3": "^1.3.1",
6565
"eslint": "^8.50.0",
66-
"husky": "^9.0.0",
66+
"husky": "^8.0.3",
6767
"jest": "^29.7.0",
6868
"lerna": "^5.0.0",
6969
"lint-staged": "^15.0.0",

packages/dummy/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export const foo = 'foo';
22
export const bar = 'bar';
3+
export const baz = 'baz';

0 commit comments

Comments
 (0)