@yozora/tokenizer-link 2.3.14 → 2.3.15

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.3.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Patch release for packages with unreleased commits. Scope: all, patch.
8
+ - :wrench: chore(tooling): migrate eslint and rollup configs and align formatting
9
+ - :white_check_mark: test(ast-util): remove obsolete snapshots
10
+ - Updated dependencies:
11
+ - @yozora/ast@2.3.15
12
+ - @yozora/character@2.3.15
13
+ - @yozora/core-tokenizer@2.3.15
14
+
3
15
  ## 2.3.14
4
16
 
5
17
  ### Patch Changes
@@ -11,7 +11,7 @@ import { LinkType, Link } from '@yozora/ast';
11
11
  * @see https://github.github.com/gfm/#example-522
12
12
  * @see https://github.github.com/gfm/#example-523
13
13
  */
14
- declare const checkBalancedBracketsStatus: (startIndex: number, endIndex: number, internalTokens: ReadonlyArray<IInlineToken>, nodePoints: ReadonlyArray<INodePoint>) => -1 | 0 | 1;
14
+ declare const checkBalancedBracketsStatus: (startIndex: number, endIndex: number, internalTokens: readonly IInlineToken[], nodePoints: readonly INodePoint[]) => -1 | 0 | 1;
15
15
 
16
16
  /**
17
17
  * A link destination consists of either
@@ -26,7 +26,7 @@ declare const checkBalancedBracketsStatus: (startIndex: number, endIndex: number
26
26
  * @see https://github.github.com/gfm/#link-destination
27
27
  * @return position at next iteration
28
28
  */
29
- declare function eatLinkDestination(nodePoints: ReadonlyArray<INodePoint>, startIndex: number, endIndex: number): number;
29
+ declare function eatLinkDestination(nodePoints: readonly INodePoint[], startIndex: number, endIndex: number): number;
30
30
 
31
31
  /**
32
32
  * A link title consists of either
@@ -40,7 +40,7 @@ declare function eatLinkDestination(nodePoints: ReadonlyArray<INodePoint>, start
40
40
  * - a sequence of zero or more characters between matching parentheses '(...)',
41
41
  * including a '(' or ')' character only if it is backslash-escaped.
42
42
  */
43
- declare function eatLinkTitle(nodePoints: ReadonlyArray<INodePoint>, startIndex: number, endIndex: number): number;
43
+ declare function eatLinkTitle(nodePoints: readonly INodePoint[], startIndex: number, endIndex: number): number;
44
44
 
45
45
  type T = LinkType;
46
46
  type INode = Link;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-link",
3
- "version": "2.3.14",
3
+ "version": "2.3.15",
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/ast": "^2.3.14",
35
- "@yozora/character": "^2.3.14",
36
- "@yozora/core-tokenizer": "^2.3.14"
34
+ "@yozora/ast": "^2.3.15",
35
+ "@yozora/core-tokenizer": "^2.3.15",
36
+ "@yozora/character": "^2.3.15"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "rollup -c ../../rollup.config.mjs",