Skip to content

Commit cbeeeec

Browse files
authored
Merge pull request #92 from mizdra/update-project-config
Update project config
2 parents 04bbccb + 884136a commit cbeeeec

26 files changed

+12089
-8489
lines changed

.eslintignore

-2
This file was deleted.

.eslintrc.cjs

-36
This file was deleted.

.github/workflows/ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,12 @@ jobs:
5454
node-version: ${{ matrix.node }}
5555
cache: 'npm'
5656
- run: npm install
57+
- name: Get installed Playwright version
58+
id: playwright-version
59+
run: echo "version=$(cat node_modules/playwright/package.json | jq -r .version)" >> "$GITHUB_OUTPUT"
60+
- uses: actions/cache@v4
61+
with:
62+
path: ~/.cache/ms-playwright
63+
key: ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}
64+
restore-keys: ${{ runner.os }}-playwright-
5765
- run: npm run e2e

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ type: `boolean`, default: `true`
482482
Does not add `__is<AbstractType>` to the fields that can be passed to factory. `__is<AbstractType>` is a field that relay-compiler automatically adds to the query[^1][^2]. It is recommended for Relay users to set this option to `false`.
483483

484484
[^1]: https://github.com/facebook/relay/issues/3129#issuecomment-659439154
485+
485486
[^2]: https://github.com/search?q=repo%3Afacebook%2Frelay%20%2F__is%3CAbstractType%3E%2F&type=code
486487

487488
```ts

e2e/01-esm/vite.config.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import { defineConfig } from 'vitest/config';
2-
import GithubActionsReporter from 'vitest-github-actions-reporter';
32

4-
// eslint-disable-next-line import/no-default-export
53
export default defineConfig({
64
test: {
75
include: ['**/*.e2e.ts'],
8-
reporters: process.env['GITHUB_ACTIONS'] ? ['default', new GithubActionsReporter()] : 'default',
6+
reporters: process.env['GITHUB_ACTIONS'] ? ['default', 'github-actions'] : 'default',
97
},
108
});

e2e/03-browser/vite.config.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import { defineConfig } from 'vitest/config';
2-
import GithubActionsReporter from 'vitest-github-actions-reporter';
32

4-
// eslint-disable-next-line import/no-default-export
53
export default defineConfig({
64
test: {
75
include: ['**/*.e2e.ts'],
8-
reporters: process.env['GITHUB_ACTIONS'] ? ['default', new GithubActionsReporter()] : 'default',
6+
reporters: process.env['GITHUB_ACTIONS'] ? ['default', 'github-actions'] : 'default',
97
browser: {
108
enabled: true,
11-
name: 'chrome',
9+
provider: 'playwright',
10+
name: 'chromium',
1211
headless: true,
1312
},
1413
},

eslint.config.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// @ts-check
2+
import mizdra from '@mizdra/eslint-config-mizdra';
3+
4+
/** @type {import('eslint').Linter.Config[]} */
5+
export default [
6+
{ ignores: ['dist', 'e2e'] },
7+
...mizdra.baseConfigs,
8+
...mizdra.typescriptConfigs,
9+
...mizdra.nodeConfigs,
10+
{
11+
files: ['**/*.{js,jsx,mjs,cjs}', '**/*.{ts,tsx,cts,mts}'],
12+
rules: {
13+
'n/no-extraneous-dependencies': 'off', // false positive
14+
},
15+
},
16+
{
17+
files: ['**/*.{ts,tsx,cts,mts}'],
18+
rules: {
19+
'@typescript-eslint/no-empty-object-type': 'off',
20+
},
21+
},
22+
mizdra.prettierConfig,
23+
];

0 commit comments

Comments
 (0)