Skip to content

Commit 8046e54

Browse files
committed
Don’t test against Node.js 18
This isn’t supported according to our compatibility sections.
1 parent 644bc26 commit 8046e54

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,5 @@ jobs:
2222
- ubuntu-latest
2323
- windows-latest
2424
node:
25-
- 18
2625
- 20
2726
- 22

packages/language-service/lib/plugins/recma-export-filepath.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ export function recmaExportFilepath(options) {
1111
const name = 'name' in opts ? String(opts.name) : 'filepath'
1212

1313
return () => ({
14-
finalize() {
15-
return (
16-
'/** Generated by [recma-export-filepath](https://github.com/remcohaszing/recma-export-filepath) */\nexport const ' +
17-
name +
18-
" = /** @type {string} */ ('')"
19-
)
20-
}
21-
})
14+
finalize() {
15+
return (
16+
'/** Generated by [recma-export-filepath](https://github.com/remcohaszing/recma-export-filepath) */\nexport const ' +
17+
name +
18+
" = /** @type {string} */ ('')"
19+
)
20+
}
21+
})
2222
}

0 commit comments

Comments
 (0)