Skip to content

Commit

Permalink
IGNORE until new eslint processor API used eslint#126 (comment) / htt…
Browse files Browse the repository at this point in the history
…ps://github.com/eslint/rfcs/tree/master/designs/2018-processors-improvements / eslint/eslint#11552

Upgrade: Update deps.

Update object-assign, unified, remark-parse for deps. In process of updating,
for whitespace processor test, add an extra line break
for the expected since `remark-parse@7` started preserving them
(see remarkjs/remark#351 )
  • Loading branch information
brettz9 committed Nov 1, 2019
1 parent 61a3f81 commit 697b0ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -45,9 +45,9 @@
"nyc": "^14.1.1"
},
"dependencies": {
"object-assign": "^4.0.1",
"remark-parse": "^5.0.0",
"unified": "^6.1.2"
"object-assign": "^4.1.1",
"remark-parse": "^7.0.1",
"unified": "^8.4.1"
},
"engines": {
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/processor.js
Expand Up @@ -188,7 +188,7 @@ describe("processor", () => {
const blocks = processor.preprocess(code);

assert.strictEqual(blocks.length, 1);
assert.strictEqual(blocks[0], "\n\n \n \n");
assert.strictEqual(blocks[0], "\n\n\n \n \n");
});

it("should ignore code fences with unspecified info string", () => {
Expand Down

0 comments on commit 697b0ac

Please sign in to comment.