File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export class OptionsReader implements CssBlockOptionsReadonly {
21
21
readonly outputMode : OutputMode ;
22
22
readonly importer : Importer ;
23
23
readonly rootDir : string ;
24
- readonly data : ImporterData ;
24
+ readonly importerData : ImporterData ;
25
25
readonly preprocessors : Preprocessors ;
26
26
readonly disablePreprocessChaining : boolean ;
27
27
readonly maxConcurrentCompiles : number ;
@@ -30,7 +30,7 @@ export class OptionsReader implements CssBlockOptionsReadonly {
30
30
this . outputMode = opts . outputMode || OutputMode . BEM ;
31
31
this . importer = opts . importer || filesystemImporter ;
32
32
this . rootDir = opts . rootDir || process . cwd ( ) ;
33
- this . data = opts . data || { } ;
33
+ this . importerData = opts . importerData || { } ;
34
34
this . preprocessors = opts . preprocessors || { } ;
35
35
this . disablePreprocessChaining = ! ! opts . disablePreprocessChaining ;
36
36
this . maxConcurrentCompiles = opts . maxConcurrentCompiles || 4 ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { CssBlockOptionsReadonly } from "./options";
8
8
declare module "./options" {
9
9
export interface CssBlockOptions {
10
10
importer : Importer ;
11
- data : ImporterData ;
11
+ importerData : ImporterData ;
12
12
}
13
13
}
14
14
You can’t perform that action at this time.
0 commit comments