Skip to content

Commit b512f0b

Browse files
committed
Update dev-dependencies
1 parent ca62b86 commit b512f0b

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717
strategy:
1818
matrix:
1919
node:
20-
- lts/erbium
20+
- lts/fermium
2121
- node

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@
6060
"c8": "^7.0.0",
6161
"prettier": "^2.0.0",
6262
"remark": "^14.0.0",
63-
"remark-cli": "^10.0.0",
63+
"remark-cli": "^11.0.0",
6464
"remark-gfm": "^3.0.0",
6565
"remark-preset-wooorm": "^9.0.0",
6666
"rimraf": "^3.0.0",
6767
"tape": "^5.0.0",
6868
"type-coverage": "^2.0.0",
6969
"type-fest": "^2.0.0",
7070
"typescript": "^4.0.0",
71-
"xo": "^0.48.0"
71+
"xo": "^0.50.0"
7272
},
7373
"scripts": {
7474
"build": "rimraf \"{lib,test}/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ test('Fixtures', (t) => {
4848
const fixture = fixtures[index]
4949
if (fixture.charAt(0) === '.') continue
5050
const filepath = join(root, fixture)
51-
const expected = read(join(filepath, 'output.md'), 'utf-8')
52-
const input = read(join(filepath, 'input.md'), 'utf-8')
51+
const expected = read(join(filepath, 'output.md'), 'utf8')
52+
const input = read(join(filepath, 'input.md'), 'utf8')
5353
const actual = github(input, 'wooorm/remark')
5454

5555
t.equal(actual, expected, 'should work on `' + fixture + '`')

0 commit comments

Comments
 (0)