Skip to content

Commit 7ec21da

Browse files
authored
build: Run lint & fix in series, not parallel (#10420)
This seems to conflict sometimes and swallow stuff weirdly. Now it should be more consistent again!
1 parent 527e278 commit 7ec21da

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,10 @@ below:
108108

109109
## Bug Bounty Program
110110

111-
Our bug bounty program aims to improve the security of our open source projects by encouraging the community to identify and report potential security vulnerabilities. Your reward will depend on the severity of the identified vulnerability.
111+
Our bug bounty program aims to improve the security of our open source projects by encouraging the community to identify
112+
and report potential security vulnerabilities. Your reward will depend on the severity of the identified vulnerability.
112113

113-
Our program is currently running on an invitation basis. If you're interested in participating, please send us an email to [email protected] and tell us, that you are interested in auditing this repository.
114+
Our program is currently running on an invitation basis. If you're interested in participating, please send us an email
115+
to [email protected] and tell us, that you are interested in auditing this repository.
114116

115117
For more details, please have a look at https://sentry.io/security/#vulnerability-disclosure.
116-

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"clean:deps": "lerna clean --yes && rm -rf node_modules && yarn",
1919
"clean:all": "run-s clean:build clean:caches clean:deps",
2020
"codecov": "codecov",
21-
"fix": "run-p fix:lerna fix:biome fix:prettier",
21+
"fix": "run-s fix:biome fix:prettier fix:lerna",
2222
"fix:lerna": "lerna run fix",
2323
"fix:biome": "biome check --apply .",
2424
"fix:prettier": "prettier **/*.md *.md **/*.css --write",
2525
"changelog": "ts-node ./scripts/get-commit-list.ts",
2626
"link:yarn": "lerna exec yarn link",
27-
"lint": "run-p lint:lerna lint:biome lint:prettier",
27+
"lint": "run-s lint:lerna lint:biome lint:prettier",
2828
"lint:lerna": "lerna run lint",
2929
"lint:biome": "biome check .",
3030
"lint:prettier": "prettier **/*.md *.md **/*.css --check",

0 commit comments

Comments
 (0)