From 7ec21dad1797f4e383dea5264845e9f1b4504205 Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Tue, 30 Jan 2024 15:53:09 +0100 Subject: [PATCH 1/2] 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! --- README.md | 7 ++++--- package.json | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b167b682655c..97ec4dadb89a 100644 --- a/README.md +++ b/README.md @@ -108,9 +108,10 @@ below: ## Bug Bounty Program -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. +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. -Our program is currently running on an invitation basis. If you're interested in participating, please send us an email to security@sentry.io and tell us, that you are interested in auditing this repository. +Our program is currently running on an invitation basis. If you're interested in participating, please send us an email +to security@sentry.io and tell us, that you are interested in auditing this repository. For more details, please have a look at https://sentry.io/security/#vulnerability-disclosure. - diff --git a/package.json b/package.json index 930794c00e91..da7149544f46 100644 --- a/package.json +++ b/package.json @@ -18,13 +18,13 @@ "clean:deps": "lerna clean --yes && rm -rf node_modules && yarn", "clean:all": "run-s clean:build clean:caches clean:deps", "codecov": "codecov", - "fix": "run-p fix:lerna fix:biome fix:prettier", + "fix": "run-s fix:biome fix:prettier fix:lerna", "fix:lerna": "lerna run fix", "fix:biome": "biome check --apply .", "fix:prettier": "prettier **/*.md *.md **/*.css --write", "changelog": "ts-node ./scripts/get-commit-list.ts", "link:yarn": "lerna exec yarn link", - "lint": "run-p lint:lerna lint:biome lint:prettier", + "lint": "run-s lint:lerna lint:biome lint:prettier", "lint:lerna": "lerna run lint", "lint:biome": "biome check .", "lint:prettier": "prettier **/*.md *.md **/*.css --check", From 20d11cd238c5b8882c0baa10fa429d881737029b Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Tue, 30 Jan 2024 16:15:05 +0100 Subject: [PATCH 2/2] test(ci): Do not run browser integration tests for CJS (#10423) This does not really tell us anything the ESM tests do not already tell us. We can save some CI time there... --- .github/workflows/build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 62b713e73def..bf3b7d39d360 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -555,7 +555,6 @@ jobs: matrix: bundle: - esm - - cjs - bundle_es5 - bundle_es5_min - bundle_es6