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 13, 2020
1 parent 48b1278 commit 7ccaf99
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -10,7 +10,7 @@
"url": "https://opencollective.com/unified"
},
"devDependencies": {
"browserify": "^16.0.0",
"browserify": "^17.0.0",
"camelcase": "^6.0.0",
"dtslint": "^4.0.0",
"execa": "^4.0.0",
Expand All @@ -20,7 +20,7 @@
"micromark-extension-gfm": "^0.3.0",
"nyc": "^15.0.0",
"prettier": "^2.0.0",
"remark-preset-wooorm": "^7.0.0",
"remark-preset-wooorm": "^8.0.0",
"tape": "^5.0.0",
"tinyify": "^3.0.0",
"typescript": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/remark-parse/package.json
Expand Up @@ -37,7 +37,7 @@
"types/index.d.ts"
],
"dependencies": {
"mdast-util-from-markdown": "^0.7.0"
"mdast-util-from-markdown": "^0.8.0"
},
"scripts": {
"test": "tape test.js"
Expand Down
2 changes: 1 addition & 1 deletion packages/remark-stringify/package.json
Expand Up @@ -37,7 +37,7 @@
],
"types": "types/index.d.ts",
"dependencies": {
"mdast-util-to-markdown": "^0.4.0"
"mdast-util-to-markdown": "^0.5.0"
},
"scripts": {
"test": "tape test.js"
Expand Down
4 changes: 2 additions & 2 deletions packages/remark-stringify/test.js
Expand Up @@ -427,12 +427,12 @@ test('stringify escapes', function (t) {
t.equal(toString('+a'), '\\+a\n', '`+` (at the start of the line)')
t.equal(toString('+a'), '\\+a\n', '`+` (phrasing)')
t.equal(toString('.a'), '.a\n', '`.`')
t.equal(toString('1.a'), '1\\.a\n', '`.` (after digit)')
t.equal(toString('1.a'), '1.a\n', '`.` (after digit before letter)')
t.equal(toString('1. '), '1\\. \n', '`.` (after digit, with space)')
t.equal(toString('1.\t'), '1\\.\t\n', '`.` (after digit, with tab)')
t.equal(toString('1.\n'), '1\\.\n', '`.` (after digit, with newline)')
t.equal(toString('1.'), '1\\.\n', '`.` (after digit, with EOF)')
t.equal(toString('1.a'), '1\\.a\n', '`1.` (after digit, without space)')
t.equal(toString('1.a'), '1.a\n', '`1.` (after digit, before letter)')
t.equal(toString('1. '), '1\\. \n', '`1.` (after digit, with space)')
t.equal(toString('1.\t'), '1\\.\t\n', '`1.` (after digit, with tab)')
t.equal(toString('1.\n'), '1\\.\n', '`1.` (after digit, with newline)')
Expand Down

0 comments on commit 7ccaf99

Please sign in to comment.