@yozora/tokenizer-autolink 2.3.14 → 2.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/lib/types/index.d.ts +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.3.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Full patch release pass 1 for version alignment to 2.3.16.
|
|
8
|
+
- Updated dependencies:
|
|
9
|
+
- @yozora/ast@2.3.16
|
|
10
|
+
- @yozora/character@2.3.16
|
|
11
|
+
- @yozora/core-tokenizer@2.3.16
|
|
12
|
+
|
|
13
|
+
## 2.3.15
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Patch release for packages with unreleased commits. Scope: all, patch.
|
|
18
|
+
- :wrench: chore(tooling): migrate eslint and rollup configs and align formatting
|
|
19
|
+
- :white_check_mark: test(ast-util): remove obsolete snapshots
|
|
20
|
+
- Updated dependencies:
|
|
21
|
+
- @yozora/ast@2.3.15
|
|
22
|
+
- @yozora/character@2.3.15
|
|
23
|
+
- @yozora/core-tokenizer@2.3.15
|
|
24
|
+
|
|
3
25
|
## 2.3.14
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/lib/types/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { LinkType, Link } from '@yozora/ast';
|
|
|
11
11
|
*
|
|
12
12
|
* @see https://github.github.com/gfm/#email-address
|
|
13
13
|
*/
|
|
14
|
-
declare function eatEmailAddress(nodePoints:
|
|
14
|
+
declare function eatEmailAddress(nodePoints: readonly INodePoint[], startIndex: number, endIndex: number): IResultOfRequiredEater;
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* Try to find to autolink absolute uri strictly start from the give `startIndex`.
|
|
@@ -23,7 +23,7 @@ declare function eatEmailAddress(nodePoints: ReadonlyArray<INodePoint>, startInd
|
|
|
23
23
|
*
|
|
24
24
|
* @see https://github.github.com/gfm/#absolute-uri
|
|
25
25
|
*/
|
|
26
|
-
declare function eatAbsoluteUri(nodePoints:
|
|
26
|
+
declare function eatAbsoluteUri(nodePoints: readonly INodePoint[], startIndex: number, endIndex: number): IResultOfRequiredEater;
|
|
27
27
|
/**
|
|
28
28
|
* Try to find to autolink schema strictly start from the give `startIndex`.
|
|
29
29
|
*
|
|
@@ -33,7 +33,7 @@ declare function eatAbsoluteUri(nodePoints: ReadonlyArray<INodePoint>, startInde
|
|
|
33
33
|
*
|
|
34
34
|
* @see https://github.github.com/gfm/#scheme
|
|
35
35
|
*/
|
|
36
|
-
declare function eatAutolinkSchema(nodePoints:
|
|
36
|
+
declare function eatAutolinkSchema(nodePoints: readonly INodePoint[], startIndex: number, endIndex: number): IResultOfRequiredEater;
|
|
37
37
|
|
|
38
38
|
type AutolinkContentType = 'uri' | 'email';
|
|
39
39
|
type T = LinkType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yozora/tokenizer-autolink",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.16",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "guanghechen",
|
|
6
6
|
"url": "https://github.com/guanghechen/"
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"README.md"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@yozora/
|
|
35
|
-
"@yozora/
|
|
36
|
-
"@yozora/
|
|
34
|
+
"@yozora/core-tokenizer": "^2.3.16",
|
|
35
|
+
"@yozora/ast": "^2.3.16",
|
|
36
|
+
"@yozora/character": "^2.3.16"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "rollup -c ../../rollup.config.mjs",
|