@@ -109,15 +109,15 @@ module.exports = {
109109
110110## Options
111111
112- | Name | Type | Default | Description |
113- | :------------------------------------------- : | :-------------------------: | :-----: | :------------------------------------------------- |
114- | ** [ ` url ` ] ( #url ) ** | ` {Boolean\|Function} ` | ` true ` | Enable/Disable ` url() ` handling |
115- | ** [ ` import ` ] ( #import ) ** | ` {Boolean\|Function} ` | ` true ` | Enable/Disable @import handling |
116- | ** [ ` modules ` ] ( #modules ) ** | ` {Boolean\|String\|Object} ` | ` false ` | Enable/Disable CSS Modules and setup their options |
117- | ** [ ` sourceMap ` ] ( #sourcemap ) ** | ` {Boolean} ` | ` false ` | Enable/Disable Sourcemaps |
118- | ** [ ` importLoaders ` ] ( #importloaders ) ** | ` {Number} ` | ` 0 ` | Number of loaders applied before CSS loader |
119- | ** [ ` exportLocalsStyle ` ] ( #exportlocalsstyle ) ** | ` {String} ` | ` asIs ` | Setup style of exported classnames |
120- | ** [ ` onlyLocals ` ] ( #onlylocals ) ** | ` {Boolean} ` | ` false ` | Export only locals |
112+ | Name | Type | Default | Description |
113+ | :-----------------------------------------: | :-------------------------: | :-----: | :------------------------------------------------- |
114+ | ** [ ` url ` ] ( #url ) ** | ` {Boolean\|Function} ` | ` true ` | Enable/Disable ` url() ` handling |
115+ | ** [ ` import ` ] ( #import ) ** | ` {Boolean\|Function} ` | ` true ` | Enable/Disable @import handling |
116+ | ** [ ` modules ` ] ( #modules ) ** | ` {Boolean\|String\|Object} ` | ` false ` | Enable/Disable CSS Modules and setup their options |
117+ | ** [ ` sourceMap ` ] ( #sourcemap ) ** | ` {Boolean} ` | ` false ` | Enable/Disable Sourcemaps |
118+ | ** [ ` importLoaders ` ] ( #importloaders ) ** | ` {Number} ` | ` 0 ` | Number of loaders applied before CSS loader |
119+ | ** [ ` localsConvention ` ] ( #localsconvention ) ** | ` {String} ` | ` asIs ` | Setup style of exported classnames |
120+ | ** [ ` onlyLocals ` ] ( #onlylocals ) ** | ` {Boolean} ` | ` false ` | Export only locals |
121121
122122### ` url `
123123
@@ -763,7 +763,7 @@ module.exports = {
763763
764764This may change in the future when the module system (i. e. webpack) supports loader matching by origin.
765765
766- ### ` exportLocalsStyle `
766+ ### ` localsConvention `
767767
768768Type: ` String `
769769Default: ` undefined `
@@ -801,7 +801,7 @@ module.exports = {
801801 test: / \. css$ / i ,
802802 loader: ' css-loader' ,
803803 options: {
804- exportLocalsStyle : ' camelCase' ,
804+ localsConvention : ' camelCase' ,
805805 },
806806 },
807807 ],
0 commit comments