Skip to content

Commit df33f14

Browse files
committed
Update dev-dependencies
1 parent 3006231 commit df33f14

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import path from 'path'
1+
import path from 'node:path'
22
// @ts-expect-error: hush
33
import gitDiffTree from 'git-diff-tree'
44
import {findUpOne} from 'vfile-find-up'

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@
4545
"prettier": "^2.0.0",
4646
"remark-cli": "^9.0.0",
4747
"remark-preset-wooorm": "^8.0.0",
48-
"retext-english": "^3.0.0",
49-
"retext-stringify": "^2.0.0",
48+
"retext-english": "^4.0.0",
49+
"retext-stringify": "^3.0.0",
5050
"rimraf": "^3.0.0",
5151
"tape": "^5.0.0",
5252
"to-vfile": "^7.0.0",
5353
"type-coverage": "^2.0.0",
5454
"typescript": "^4.0.0",
5555
"unified": "^10.0.0",
56-
"unist-util-visit": "^3.0.0",
57-
"xo": "^0.39.0"
56+
"unist-util-visit": "^4.0.0",
57+
"xo": "^0.42.0"
5858
},
5959
"scripts": {
6060
"build": "rimraf \"*.d.ts\" \"test/**/*.d.ts\" && tsc && type-coverage",

test/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import cp from 'child_process'
2-
import fs from 'fs'
3-
import path from 'path'
4-
import {promisify} from 'util'
1+
import cp from 'node:child_process'
2+
import fs from 'node:fs'
3+
import path from 'node:path'
4+
import {promisify} from 'node:util'
55
import test from 'tape'
66
import {toVFile} from 'to-vfile'
7-
import {processor} from './processor.js'
87
import rimraf from 'rimraf'
8+
import {processor} from './processor.js'
99

1010
const exec = promisify(cp.exec)
1111

test/processor.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import {unified} from 'unified'
2-
// @ts-expect-error: next
32
import retextEnglish from 'retext-english'
4-
// @ts-expect-error: next
53
import retextStringify from 'retext-stringify'
64
import {visit} from 'unist-util-visit'
75
import {toString} from 'nlcst-to-string'

0 commit comments

Comments
 (0)