Skip to content

Commit aacf956

Browse files
committed
fix: add funding information
1 parent d3e1972 commit aacf956

File tree

3 files changed

+807
-630
lines changed

3 files changed

+807
-630
lines changed

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
"editorjs"
1212
],
1313
"repository": "https://github.com/hata6502/editorjs-style",
14+
"funding": {
15+
"type": "github",
16+
"url": "https://github.com/sponsors/hata6502"
17+
},
1418
"license": "MIT",
1519
"author": "Tomoyuki Hata <[email protected]>",
1620
"main": "dist/index.js",
@@ -30,7 +34,7 @@
3034
"license-checker": "^25.0.1",
3135
"material-design-icons": "^3.0.1",
3236
"prettier": "^2.0.5",
33-
"semantic-release": "^17.1.1",
37+
"semantic-release": "^17.4.2",
3438
"ts-loader": "^8.0.3",
3539
"typescript": "^4.0.2",
3640
"webpack": "^4.44.1",

src/EditorJSStyleError.ts

-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ class EditorJSStyleError extends Error {
22
constructor(...args: any[]) {
33
super(...args);
44

5-
if (Error.captureStackTrace) {
6-
Error.captureStackTrace(this, EditorJSStyleError);
7-
}
8-
95
this.name = 'EditorJSStyleError';
106
}
117
}

0 commit comments

Comments
 (0)