Skip to content

Commit fadc625

Browse files
committed
Export multiple matchers from Matcher.js
1 parent 87d3f09 commit fadc625

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

Extension/Consent.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ConsentEngine from "./ConsentEngine.js";
22
import Action from "./Action.js";
3-
import Matcher from "./Matcher.js";
3+
import {Matcher,OnOffMatcher} from "./Matcher.js";
44

55
export default class Consent {
66
constructor(config, cmp) {

Extension/Detector.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Matcher from "./Matcher.js";
1+
import {Matcher} from "./Matcher.js";
22

33
export default class Detector {
44
constructor(config) {

Extension/Matcher.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import ConsentEngine from "./ConsentEngine.js";
22
import Tools from "./Tools.js";
33

4-
export default class Matcher {
4+
export class Matcher {
55
static createMatcher(config) {
66
switch(config.type) {
77
case "css": return new CssMatcher(config);
@@ -64,7 +64,7 @@ export default class Matcher {
6464
}
6565
}
6666

67-
class OnOffMatcher extends Matcher {
67+
export class OnOffMatcher extends Matcher {
6868
constructor(config) {
6969
super(config);
7070
}
@@ -143,7 +143,7 @@ class OnOffMatcher extends Matcher {
143143
}
144144
}
145145

146-
class CssMatcher extends Matcher {
146+
export class CssMatcher extends Matcher {
147147
constructor(config) {
148148
super(config);
149149
}
@@ -155,7 +155,7 @@ class CssMatcher extends Matcher {
155155
}
156156
}
157157

158-
class CheckboxMatcher extends Matcher {
158+
export class CheckboxMatcher extends Matcher {
159159
constructor(config) {
160160
super(config);
161161
}
@@ -176,7 +176,7 @@ class CheckboxMatcher extends Matcher {
176176
}
177177
}
178178

179-
class URLMatcher extends Matcher {
179+
export class URLMatcher extends Matcher {
180180
constructor(config) {
181181
super(config);
182182
}

webpack.config.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,15 @@ module.exports = {
2828
output: {
2929
publicPath: "",
3030
filename: '[name].js',
31-
path: path.resolve(__dirname, 'dist'),
31+
path: path.resolve(__dirname, 'dist')
3232
},
3333
module: {
34+
parser: {
35+
javascript: {
36+
exportsPresence: "error",
37+
importExportsPresence: "error"
38+
}
39+
},
3440
rules: [
3541
{
3642
test: /\.(png|json|svg|html)/,

0 commit comments

Comments
 (0)