Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Oct 12, 2021
1 parent 28475ca commit 198c693
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import {Node} from 'unist'
import {VFile, VFileCompatible} from 'vfile'

/* eslint-disable @typescript-eslint/ban-types */
/* eslint-disable @typescript-eslint/ban-types, @typescript-eslint/naming-convention */

type VFileWithOutput<Result> = Result extends Uint8Array // Buffer.
? VFile
Expand Down Expand Up @@ -71,7 +71,7 @@ type UsePlugin<
// just keep it as it was.
Processor<ParseTree, CurrentTree, CompileTree, CompileResult>

/* eslint-enable @typescript-eslint/ban-types */
/* eslint-enable @typescript-eslint/ban-types, @typescript-eslint/naming-convention */

/**
* Processor allows plugins to be chained together to transform content.
Expand Down
5 changes: 3 additions & 2 deletions index.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/* eslint-disable @typescript-eslint/no-floating-promises */

import type {Buffer} from 'node:buffer'
import {expectType, expectError} from 'tsd'
import {Node, Parent, Literal} from 'unist'
import {VFile} from 'vfile'
import type {Node, Parent, Literal} from 'unist'
import type {VFile} from 'vfile'
import {
unified,
Plugin,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@
"@types/tape": "^4.0.0",
"c8": "^7.0.0",
"prettier": "^2.0.0",
"remark-cli": "^9.0.0",
"remark-preset-wooorm": "^8.0.0",
"remark-cli": "^10.0.0",
"remark-preset-wooorm": "^9.0.0",
"rimraf": "^3.0.0",
"tape": "^5.0.0",
"tsd": "^0.17.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"xo": "^0.42.0"
"xo": "^0.45.0"
},
"scripts": {
"build": "rimraf \"test/**/*.d.ts\" && tsc && tsd && type-coverage",
Expand Down
1 change: 1 addition & 0 deletions test/process.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* @typedef {import('..').Compiler} Compiler
*/

import {Buffer} from 'node:buffer'
import test from 'tape'
import {VFile} from 'vfile'
import {unified} from '../index.js'
Expand Down
1 change: 1 addition & 0 deletions test/run.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import process from 'node:process'
import test from 'tape'
import {VFile} from 'vfile'
import {unified} from '../index.js'
Expand Down

0 comments on commit 198c693

Please sign in to comment.