Skip to content

Commit 80a93ee

Browse files
authored
chore(repo): Update commitlint and use globby (#3411)
1 parent 29bf434 commit 80a93ee

File tree

5 files changed

+694
-557
lines changed

5 files changed

+694
-557
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ packages/*/examples
1515
.yalc
1616
package-lock.json
1717
**/integration/templates/**/*
18+
commitlint.config.ts

.github/workflows/pr-title-linter.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,15 @@ jobs:
1616
steps:
1717
- name: Checkout Repo
1818
uses: actions/checkout@v4
19+
20+
- name: Setup
21+
id: config
22+
uses: ./.github/actions/init
1923
with:
20-
fetch-depth: 0
21-
show-progress: false
24+
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
25+
turbo-team: ${{ vars.TURBO_TEAM }}
26+
turbo-token: ${{ secrets.TURBO_TOKEN }}
27+
playwright-enabled: true # Must be present to enable caching on branched workflows
2228

2329
- name: Lint Pull Request Title
2430
run: echo "${{ github.event.pull_request.title }}" | npx commitlint
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
/* eslint-env es2021 */
2-
const glob = require('glob');
3-
const fs = require('fs');
1+
import { globbySync } from 'globby';
2+
import { readFileSync } from 'node:fs';
43

54
const getPackageNames = () => {
6-
const files = glob.sync('./packages/*/package.json');
7-
const names = files.map(f => JSON.parse(fs.readFileSync(f, 'utf8')).name);
5+
const files = globbySync('./packages/*/package.json');
6+
const names = files.map(f => JSON.parse(readFileSync(f, 'utf8')).name as string);
87
return names.map(n => n.split('/').pop());
98
};
109

11-
/**
12-
* @type {import('@commitlint/types').UserConfig}
13-
*/
14-
module.exports = {
10+
const Configuration = {
1511
extends: ['@commitlint/config-conventional'],
1612
rules: {
1713
'subject-case': [2, 'always', ['sentence-case']],
@@ -20,3 +16,5 @@ module.exports = {
2016
'scope-enum': [2, 'always', [...getPackageNames(), 'repo', 'release', 'e2e', '*']],
2117
},
2218
};
19+
20+
export default Configuration;

0 commit comments

Comments
 (0)