Skip to content

Commit 67739fc

Browse files
author
Michał Nykiel
committed
💄 run eslint
1 parent 8d74045 commit 67739fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "module-mapping-webpack-plugin",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Webpack plugin for mapping modules to different files",
55
"main": "index.js",
66
"scripts": {
7-
"test": "ava"
7+
"test": "ava && eslint ."
88
},
99
"keywords": [
1010
"webpack",

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ test.cb('should map foo.js to bar.js', t => {
4848
const compiler = mock((name, fn) => {
4949
t.is(name, 'normal-module-factory');
5050
fn(moduleFactory);
51-
})
51+
});
5252

5353
plugin.apply(compiler);
5454
});

0 commit comments

Comments
 (0)