1
1
// Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
3
- exports [` default options 1` ] = `
3
+ exports [` css-loader@3 default options 1` ] = `
4
4
"declare namespace ExampleCssNamespace {
5
5
export interface IExampleCss {
6
6
\\" bar-baz\\ " : string ;
@@ -18,7 +18,7 @@ export = ExampleCssModule;
18
18
"
19
19
` ;
20
20
21
- exports [` localsConvention asIs 1` ] = `
21
+ exports [` css-loader@3 localsConvention asIs 1` ] = `
22
22
"declare namespace ExampleCssNamespace {
23
23
export interface IExampleCss {
24
24
\\" bar-baz\\ " : string ;
@@ -36,7 +36,7 @@ export = ExampleCssModule;
36
36
"
37
37
` ;
38
38
39
- exports [` localsConvention camelCase 1` ] = `
39
+ exports [` css-loader@3 localsConvention camelCase 1` ] = `
40
40
"declare namespace ExampleCssNamespace {
41
41
export interface IExampleCss {
42
42
\\" bar-baz\\ " : string ;
@@ -55,7 +55,7 @@ export = ExampleCssModule;
55
55
"
56
56
` ;
57
57
58
- exports [` with banner 1` ] = `
58
+ exports [` css-loader@3 with banner 1` ] = `
59
59
"// autogenerated by typings-for-css-modules-loader
60
60
declare namespace ExampleCssNamespace {
61
61
export interface IExampleCss {
@@ -74,7 +74,7 @@ export = ExampleCssModule;
74
74
"
75
75
` ;
76
76
77
- exports [` with locals export disabled 1` ] = `
77
+ exports [` css-loader@3 with locals export disabled 1` ] = `
78
78
"declare namespace ExampleCssNamespace {
79
79
export interface IExampleCss {
80
80
\\" bar-baz\\ " : string ;
@@ -89,7 +89,7 @@ export = ExampleCssModule;
89
89
"
90
90
` ;
91
91
92
- exports [` with no formatter 1` ] = `
92
+ exports [` css-loader@3 with no formatter 1` ] = `
93
93
"declare namespace ExampleCssNamespace {
94
94
export interface IExampleCss {
95
95
' bar-baz' : string ;
@@ -106,7 +106,7 @@ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss & {
106
106
export = ExampleCssModule;"
107
107
` ;
108
108
109
- exports [` with prettier 1` ] = `
109
+ exports [` css-loader@3 with prettier 1` ] = `
110
110
"declare namespace ExampleCssNamespace {
111
111
export interface IExampleCss {
112
112
\\" bar-baz\\ " : string ;
@@ -124,7 +124,149 @@ export = ExampleCssModule;
124
124
"
125
125
` ;
126
126
127
- exports [` with sourcemap 1` ] = `
127
+ exports [` css-loader@3 with sourcemap 1` ] = `
128
+ "declare namespace ExampleCssNamespace {
129
+ export interface IExampleCss {
130
+ \\" bar-baz\\ " : string ;
131
+ composed: string ;
132
+ foo: string ;
133
+ }
134
+ }
135
+
136
+ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss & {
137
+ /** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
138
+ locals : ExampleCssNamespace .IExampleCss ;
139
+ } ;
140
+
141
+ export = ExampleCssModule;
142
+ "
143
+ ` ;
144
+
145
+ exports [` css-loader@latest default options 1` ] = `
146
+ "declare namespace ExampleCssNamespace {
147
+ export interface IExampleCss {
148
+ \\" bar-baz\\ " : string ;
149
+ composed: string ;
150
+ foo: string ;
151
+ }
152
+ }
153
+
154
+ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss & {
155
+ /** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
156
+ locals : ExampleCssNamespace .IExampleCss ;
157
+ } ;
158
+
159
+ export = ExampleCssModule;
160
+ "
161
+ ` ;
162
+
163
+ exports [` css-loader@latest localsConvention asIs 1` ] = `
164
+ "declare namespace ExampleCssNamespace {
165
+ export interface IExampleCss {
166
+ \\" bar-baz\\ " : string ;
167
+ composed: string ;
168
+ foo: string ;
169
+ }
170
+ }
171
+
172
+ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss & {
173
+ /** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
174
+ locals : ExampleCssNamespace .IExampleCss ;
175
+ } ;
176
+
177
+ export = ExampleCssModule;
178
+ "
179
+ ` ;
180
+
181
+ exports [` css-loader@latest localsConvention camelCase 1` ] = `
182
+ "declare namespace ExampleCssNamespace {
183
+ export interface IExampleCss {
184
+ \\" bar-baz\\ " : string ;
185
+ barBaz: string ;
186
+ composed: string ;
187
+ foo: string ;
188
+ }
189
+ }
190
+
191
+ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss & {
192
+ /** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
193
+ locals : ExampleCssNamespace .IExampleCss ;
194
+ } ;
195
+
196
+ export = ExampleCssModule;
197
+ "
198
+ ` ;
199
+
200
+ exports [` css-loader@latest with banner 1` ] = `
201
+ "// autogenerated by typings-for-css-modules-loader
202
+ declare namespace ExampleCssNamespace {
203
+ export interface IExampleCss {
204
+ \\" bar-baz\\ " : string ;
205
+ composed: string ;
206
+ foo: string ;
207
+ }
208
+ }
209
+
210
+ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss & {
211
+ /** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
212
+ locals : ExampleCssNamespace .IExampleCss ;
213
+ } ;
214
+
215
+ export = ExampleCssModule;
216
+ "
217
+ ` ;
218
+
219
+ exports [` css-loader@latest with locals export disabled 1` ] = `
220
+ "declare namespace ExampleCssNamespace {
221
+ export interface IExampleCss {
222
+ \\" bar-baz\\ " : string ;
223
+ composed: string ;
224
+ foo: string ;
225
+ }
226
+ }
227
+
228
+ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss;
229
+
230
+ export = ExampleCssModule;
231
+ "
232
+ ` ;
233
+
234
+ exports [` css-loader@latest with no formatter 1` ] = `
235
+ "declare namespace ExampleCssNamespace {
236
+ export interface IExampleCss {
237
+ ' bar-baz' : string ;
238
+ ' composed' : string ;
239
+ ' foo' : string ;
240
+ }
241
+ }
242
+
243
+ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss & {
244
+ /** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
245
+ locals : ExampleCssNamespace .IExampleCss ;
246
+ } ;
247
+
248
+ export = ExampleCssModule;"
249
+ ` ;
250
+
251
+ exports [` css-loader@latest with prettier 1` ] = `
252
+ "declare namespace ExampleCssNamespace {
253
+ export interface IExampleCss {
254
+ \\" bar-baz\\ " : string ;
255
+ composed: string ;
256
+ foo: string ;
257
+ }
258
+ }
259
+
260
+ declare const ExampleCssModule: ExampleCssNamespace.IExampleCss & {
261
+ /** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
262
+ locals : ExampleCssNamespace .IExampleCss ;
263
+ } ;
264
+
265
+ export = ExampleCssModule;
266
+ "
267
+ ` ;
268
+
269
+ exports [` css-loader@latest with sourcemap 1` ] = `
128
270
"declare namespace ExampleCssNamespace {
129
271
export interface IExampleCss {
130
272
\\" bar-baz\\ " : string ;
0 commit comments