Skip to content

Commit 94cae2c

Browse files
Upgrade package to Resolve Protocol relative URL issue (#1)
1 parent e711141 commit 94cae2c

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.eslintrc

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,11 @@
2222
"plugin:@typescript-eslint/recommended"
2323
]
2424
}
25-
]
25+
],
26+
rules: {
27+
'@typescript-eslint/ban-ts-comment': [
28+
'error',
29+
{'ts-ignore': 'allow-with-description'},
30+
],
31+
}
2632
}

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# markdown-it-external-link changelog
22

3+
## 1.0.2 - Aug 25, 2023
4+
5+
### Bug
6+
7+
- Resolve Protocol relative URL issue
8+
39
## 1.0.0 - Aug 24, 2023
410

511
- Initial Release

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "markdown-it-external-link",
33
"description": "markdown-it plugin that adds `target` and `rel` attributes on external links.",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"main": "index.js",
66
"types": "types/index.d.ts",
77
"files": [
@@ -36,7 +36,7 @@
3636
"homepage": "https://github.com/trunkcode/markdown-it-external-link#readme",
3737
"runkitExampleFilename": "runkitExample.js",
3838
"dependencies": {
39-
"detect-external-link": "1.0.1"
39+
"detect-external-link": "1.0.2"
4040
},
4141
"devDependencies": {
4242
"@types/node": "20.5.4",

0 commit comments

Comments
 (0)