File tree 4 files changed +14
-8
lines changed
4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
import ConsentEngine from "./ConsentEngine.js" ;
2
2
import Action from "./Action.js" ;
3
- import Matcher from "./Matcher.js" ;
3
+ import { Matcher , OnOffMatcher } from "./Matcher.js" ;
4
4
5
5
export default class Consent {
6
6
constructor ( config , cmp ) {
Original file line number Diff line number Diff line change 1
- import Matcher from "./Matcher.js" ;
1
+ import { Matcher } from "./Matcher.js" ;
2
2
3
3
export default class Detector {
4
4
constructor ( config ) {
Original file line number Diff line number Diff line change 1
1
import ConsentEngine from "./ConsentEngine.js" ;
2
2
import Tools from "./Tools.js" ;
3
3
4
- export default class Matcher {
4
+ export class Matcher {
5
5
static createMatcher ( config ) {
6
6
switch ( config . type ) {
7
7
case "css" : return new CssMatcher ( config ) ;
@@ -64,7 +64,7 @@ export default class Matcher {
64
64
}
65
65
}
66
66
67
- class OnOffMatcher extends Matcher {
67
+ export class OnOffMatcher extends Matcher {
68
68
constructor ( config ) {
69
69
super ( config ) ;
70
70
}
@@ -143,7 +143,7 @@ class OnOffMatcher extends Matcher {
143
143
}
144
144
}
145
145
146
- class CssMatcher extends Matcher {
146
+ export class CssMatcher extends Matcher {
147
147
constructor ( config ) {
148
148
super ( config ) ;
149
149
}
@@ -155,7 +155,7 @@ class CssMatcher extends Matcher {
155
155
}
156
156
}
157
157
158
- class CheckboxMatcher extends Matcher {
158
+ export class CheckboxMatcher extends Matcher {
159
159
constructor ( config ) {
160
160
super ( config ) ;
161
161
}
@@ -176,7 +176,7 @@ class CheckboxMatcher extends Matcher {
176
176
}
177
177
}
178
178
179
- class URLMatcher extends Matcher {
179
+ export class URLMatcher extends Matcher {
180
180
constructor ( config ) {
181
181
super ( config ) ;
182
182
}
Original file line number Diff line number Diff line change @@ -28,9 +28,15 @@ module.exports = {
28
28
output : {
29
29
publicPath : "" ,
30
30
filename : '[name].js' ,
31
- path : path . resolve ( __dirname , 'dist' ) ,
31
+ path : path . resolve ( __dirname , 'dist' )
32
32
} ,
33
33
module : {
34
+ parser : {
35
+ javascript : {
36
+ exportsPresence : "error" ,
37
+ importExportsPresence : "error"
38
+ }
39
+ } ,
34
40
rules : [
35
41
{
36
42
test : / \. ( p n g | j s o n | s v g | h t m l ) / ,
You can’t perform that action at this time.
0 commit comments