@everymatrix/player-bonus-history 1.22.6 → 1.22.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/player-bonus-history.js +17 -17
- package/dist/player-bonus-history.js.map +1 -1
- package/package.json +2 -3
- package/src/index.ts +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@everymatrix/player-bonus-history",
|
3
|
-
"version": "1.22.
|
3
|
+
"version": "1.22.7",
|
4
4
|
"main": "dist/player-bonus-history",
|
5
5
|
"svelte": "src/index.ts",
|
6
6
|
"scripts": {
|
@@ -28,7 +28,6 @@
|
|
28
28
|
"typescript": "^3.9.3"
|
29
29
|
},
|
30
30
|
"dependencies": {
|
31
|
-
"@vaadin/date-picker": "24.2.3",
|
32
31
|
"cross-env": "^7.0.3",
|
33
32
|
"sirv-cli": "^1.0.0",
|
34
33
|
"svelte": "^3.0.0"
|
@@ -36,5 +35,5 @@
|
|
36
35
|
"publishConfig": {
|
37
36
|
"access": "public"
|
38
37
|
},
|
39
|
-
"gitHead": "
|
38
|
+
"gitHead": "7ebe9d4ab3a80846d28021ec202d1ea71c9b3c58"
|
40
39
|
}
|
package/src/index.ts
CHANGED
@@ -8,7 +8,7 @@ function safeDecorator(fn) {
|
|
8
8
|
} catch (error) {
|
9
9
|
if (
|
10
10
|
error instanceof DOMException &&
|
11
|
-
error.message.includes('has already been used with this registry')
|
11
|
+
error.message.includes('has already been used with this registry') || error.message.includes('Cannot define multiple custom elements with the same tag name')
|
12
12
|
) {
|
13
13
|
return false;
|
14
14
|
}
|