Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit d4dca0a

Browse files
committed
Remove missed includes call
1 parent 7347c08 commit d4dca0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function test(name) {
2929
return rollup.rollup({
3030
entry: entry,
3131
plugins: [vuePlugin({
32-
css: ['no-css-extract'].includes(name) ? true : cssHandler,
32+
css: ['no-css-extract'].indexOf(name) > -1 ? true : cssHandler,
3333
modules: {
3434
generateScopedName: '[name]__[local]'
3535
},

0 commit comments

Comments
 (0)