We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ident
options.ident
1 parent f33131c commit 3e1c7faCopy full SHA for 3e1c7fa
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