Skip to content

Commit d3345c2

Browse files
authored
Fix indents
1 parent a93b61b commit d3345c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default (opts) => {
3030

3131
ongenerate(opts, bundle) {
3232
let modules = Array.isArray(bundle.modules) ? bundle.modules
33-
: Object.getOwnPropertyNames(bundle.modules)
33+
: Object.getOwnPropertyNames(bundle.modules)
3434
let css = Object.entries(styles)
3535
.sort((a, b) => modules.indexOf(a[0]) - modules.indexOf(b[0]))
3636
.map(entry => entry[1])
@@ -49,4 +49,4 @@ export default (opts) => {
4949
);
5050
}
5151
}
52-
}
52+
}

0 commit comments

Comments
 (0)