Skip to content

Commit

Permalink
feat: update node engine range, require v18
Browse files Browse the repository at this point in the history
BREAKING CHANGE: following deps, require Node.js >= 18
  • Loading branch information
antongolub committed Jul 13, 2024
1 parent 320a756 commit 5881b67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"require": "./target/cjs/index.cjs"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"main": "./target/cjs/index.cjs",
"module": "./target/esm/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/main/ts/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import json5 from 'json5'

import { TSConfig } from './interface'

export { default as glob, type Options as GlobOptions } from 'fast-glob'
export { default as glob } from 'fast-glob'

export { existsSync } from 'node:fs'

Expand Down

0 comments on commit 5881b67

Please sign in to comment.