Skip to content

Commit 6c86cc3

Browse files
authored
Merge pull request #250 from mizdra/fix-windows
Support for Windows
2 parents b7b15c3 + 8782fd2 commit 6c86cc3

File tree

7 files changed

+110
-16
lines changed

7 files changed

+110
-16
lines changed

.github/workflows/nodejs.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,13 @@ jobs:
2323
matrix:
2424
node: [14, 16]
2525
eslint: ['7.0.0', '^7.0.0', '8.0.0', '^8.0.0']
26-
runs-on: ubuntu-latest
26+
os: [ubuntu-latest, macos-latest, windows-latest]
27+
runs-on: ${{ matrix.os }}
2728
steps:
29+
# To avoid differences in snapshot tests.
30+
- run: git config --global core.autocrlf false
31+
if: ${{ matrix.os == 'windows-latest' }}
32+
2833
- uses: actions/checkout@v3
2934
- uses: pnpm/action-setup@v2
3035
- uses: actions/setup-node@v3
@@ -43,3 +48,8 @@ jobs:
4348

4449
- name: pnpm run postbuild:test
4550
run: pnpm run postbuild:test
51+
# Currently the E2E test is written in bash shell script,
52+
# so it is difficult to run on windows. Therefore,
53+
# we are temporarily skipping the E2E test on windows.
54+
# TODO: Enable E2E test on windows.
55+
if: ${{ matrix.os != 'windows-latest' }}

bin/_eslint-interactive.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// @ts-check
2+
import { run } from '../dist/index.js';
3+
4+
run({
5+
argv: process.argv,
6+
}).catch((error) => {
7+
console.error(error);
8+
process.exit(1);
9+
});

bin/eslint-interactive.js

+21-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
1-
#!/usr/bin/env -S node --enable-source-maps --unhandled-rejections=strict --experimental-import-meta-resolve
1+
#!/usr/bin/env node
2+
// @ts-check
23

3-
import { run } from '../dist/index.js';
4+
import { spawnSync } from 'child_process';
5+
import { resolve } from 'path';
6+
import { dirname, join } from 'path';
7+
import { fileURLToPath } from 'url';
48

5-
run({
6-
argv: process.argv,
7-
}).catch((error) => {
8-
console.error(error);
9-
process.exit(1);
10-
});
9+
const dir = join(dirname(fileURLToPath(import.meta.url)));
10+
11+
const scriptFile = resolve(dir, '_eslint-interactive.js');
12+
13+
spawnSync(
14+
'node',
15+
[
16+
'--enable-source-maps',
17+
'--unhandled-rejections=strict',
18+
'--experimental-import-meta-resolve',
19+
scriptFile,
20+
...process.argv.slice(2),
21+
],
22+
{ stdio: 'inherit' },
23+
);

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"lint:tsc:test": "tsc -p tsconfig.test.json --noEmit",
2525
"lint:eslint": "eslint --ignore-pattern '/fixtures/' --ignore-pattern '/e2e-test/' .",
2626
"lint:prettier": "prettier --check .",
27-
"test": "FORCE_HYPERLINK=1 NODE_OPTIONS=\"--experimental-vm-modules --experimental-import-meta-resolve $NODE_OPTIONS\" jest --colors",
27+
"test": "cross-env FORCE_HYPERLINK=1 NODE_OPTIONS=\"--experimental-vm-modules --experimental-import-meta-resolve $NODE_OPTIONS\" jest --colors",
2828
"postbuild:test": "./run-e2e-test.sh",
2929
"postbuild:benchmark": "node benchmark/run.js"
3030
},
@@ -39,16 +39,19 @@
3939
"@types/eslint": "^8.4.6",
4040
"@types/estraverse": "^5.1.2",
4141
"@types/estree": "^1.0.0",
42+
"@types/fs-extra": "^11.0.0",
4243
"@types/jest": "^29.0.0",
4344
"@types/node": "^18.0.5",
4445
"@types/terminal-link": "^1.2.0",
4546
"@types/yargs": "^17.0.13",
4647
"@typescript-eslint/eslint-plugin": "^5.30.6",
4748
"@typescript-eslint/parser": "^5.30.6",
4849
"babel-jest": "^29.0.1",
50+
"cross-env": "^7.0.3",
4951
"eslint": "^8.23.0",
5052
"eslint-config-prettier": "^8.5.0",
5153
"eslint-plugin-import": "^2.26.0",
54+
"fs-extra": "^11.1.0",
5255
"jest": "^29.0.1",
5356
"jest-mock-process": "^2.0.0",
5457
"npm-run-all": "^4.1.5",

pnpm-lock.yaml

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

src/core.test.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ function normalizeResults(results: ESLint.LintResult[]): ESLint.LintResult[] {
3434
...result,
3535
// Usually, `filePath` changes depending on the environment, and the snapshot will fail.
3636
// So, remove the current directory from `filePath`.
37-
filePath: result.filePath.replace(process.cwd(), ''),
37+
filePath: result.filePath
38+
.replace(process.cwd(), '')
39+
// for windows
40+
.replace(/\\/g, '/'),
3841
messages: result.messages.map(normalizeMessage),
3942
// Remove the source because the snapshot will be large
4043
source: 'ommitted',
@@ -136,7 +139,11 @@ describe('Core', () => {
136139
});
137140
test('printDetailsOfResults', async () => {
138141
const results = await core.lint();
139-
expect(await core.formatResultDetails(results, ['import/order', 'ban-exponentiation-operator'])).toMatchSnapshot();
142+
expect(
143+
(await core.formatResultDetails(results, ['import/order', 'ban-exponentiation-operator']))
144+
// for windows
145+
.replace(/\\/g, '/'),
146+
).toMatchSnapshot();
140147
});
141148
describe('applyAutoFixes', () => {
142149
test('basic', async () => {

src/test-util/fixtures.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import { exec } from 'child_process';
2-
import { dirname, join } from 'path';
2+
import { rm } from 'fs/promises';
3+
import { dirname, join, resolve } from 'path';
34
import { fileURLToPath } from 'url';
45
import { promisify } from 'util';
6+
import fse from 'fs-extra/esm';
57

68
const execPromise = promisify(exec);
79

@@ -19,9 +21,10 @@ export async function getSnapshotOfChangedFiles(): Promise<string> {
1921
}
2022

2123
export async function setupFixturesCopy() {
22-
await execPromise(`rm -rf fixtures-tmp && cp -r fixtures fixtures-tmp`, { cwd });
24+
await rm(resolve(cwd, 'fixtures-tmp'), { recursive: true, force: true });
25+
await fse.copy(resolve(cwd, 'fixtures'), resolve(cwd, 'fixtures-tmp'));
2326
}
2427

2528
export async function cleanupFixturesCopy() {
26-
await execPromise(`rm -rf fixtures-tmp`, { cwd });
29+
await rm(resolve(cwd, 'fixtures-tmp'), { recursive: true, force: true });
2730
}

0 commit comments

Comments
 (0)