From 7496449cb9fbc5fa109f708edd2dbd646ac74e51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Fri, 23 Nov 2018 07:15:35 +0000 Subject: [PATCH 1/2] Update eslint-config-hexo requirement from ^1.0.3 to ^3.0.0 Updates the requirements on [eslint-config-hexo](https://github.com/hexojs/eslint-config-hexo) to permit the latest version. - [Release notes](https://github.com/hexojs/eslint-config-hexo/releases) - [Commits](https://github.com/hexojs/eslint-config-hexo/commits/3.0.0) Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 38eacaf..e436af3 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "chai": "^3.5.0", "chai-as-promised": "^7.1.1", "eslint": "^3.11.1", - "eslint-config-hexo": "^1.0.3", + "eslint-config-hexo": "^3.0.0", "istanbul": "^0.4.5", "jscs": "^3.0.7", "jscs-preset-hexo": "^1.0.1", From 4776363b0fb8e68d64d2c447217ac5d518609c95 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 23 Nov 2018 17:13:25 +0100 Subject: [PATCH 2/2] Fix indentation --- test/index.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/index.js b/test/index.js index da15b67..20c120b 100644 --- a/test/index.js +++ b/test/index.js @@ -38,10 +38,10 @@ describe('Stylus renderer', function() { ctx.config.stylus = config; result.should.eql([ - '.foo {', - ' color: #f00;', - '}' - ].join('\n') + '\n'); + '.foo {', + ' color: #f00;', + '}' + ].join('\n') + '\n'); }); }); @@ -55,10 +55,10 @@ describe('Stylus renderer', function() { if (err) throw err; result.should.eql([ - '.foo {', - ' color: #f00;', - '}' - ].join('\n') + '\n'); + '.foo {', + ' color: #f00;', + '}' + ].join('\n') + '\n'); }); });