We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ident
options.ident
1 parent 31a25e8 commit c98b118Copy full SHA for c98b118
lib/index.js
@@ -51,12 +51,16 @@ module.exports = function loader (css, map) {
51
52
Promise.resolve().then(() => {
53
const length = Object.keys(options)
54
- .filter((option) => {
55
- // if (option === 'exec') return
56
- if (option === 'config') return
57
- if (option === 'sourceMap') return
58
-
59
- return option
+ .filter((option) => {
+ switch (option) {
+ // case 'exec':
+ case 'ident':
+ case 'config':
+ case 'sourceMap':
60
+ return
61
+ default:
62
+ return option
63
+ }
64
})
65
.length
66
0 commit comments