@yozora/tokenizer-definition 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
@@ -34,7 +34,7 @@ interface ILinkDestinationCollectingState {
34
34
  * @param state
35
35
  * @see https://github.github.com/gfm/#link-destination
36
36
  */
37
- declare function eatAndCollectLinkDestination(nodePoints: ReadonlyArray<INodePoint>, startIndex: number, endIndex: number, state: ILinkDestinationCollectingState | null): {
37
+ declare function eatAndCollectLinkDestination(nodePoints: readonly INodePoint[], startIndex: number, endIndex: number, state: ILinkDestinationCollectingState | null): {
38
38
  nextIndex: number;
39
39
  state: ILinkDestinationCollectingState;
40
40
  };
@@ -78,7 +78,7 @@ interface ILinkLabelCollectingState {
78
78
  * @param state
79
79
  * @see https://github.github.com/gfm/#link-label
80
80
  */
81
- declare function eatAndCollectLinkLabel(nodePoints: ReadonlyArray<INodePoint>, startIndex: number, endIndex: number, state: ILinkLabelCollectingState | null): {
81
+ declare function eatAndCollectLinkLabel(nodePoints: readonly INodePoint[], startIndex: number, endIndex: number, state: ILinkLabelCollectingState | null): {
82
82
  nextIndex: number;
83
83
  state: ILinkLabelCollectingState;
84
84
  };
@@ -111,7 +111,7 @@ interface ILinkTitleCollectingState {
111
111
  * @param state
112
112
  * @see https://github.github.com/gfm/#link-title
113
113
  */
114
- declare function eatAndCollectLinkTitle(nodePoints: ReadonlyArray<INodePoint>, startIndex: number, endIndex: number, state: ILinkTitleCollectingState | null): {
114
+ declare function eatAndCollectLinkTitle(nodePoints: readonly INodePoint[], startIndex: number, endIndex: number, state: ILinkTitleCollectingState | null): {
115
115
  nextIndex: number;
116
116
  state: ILinkTitleCollectingState;
117
117
  };
@@ -123,7 +123,7 @@ interface IToken extends IPartialBlockToken<T> {
123
123
  /**
124
124
  *
125
125
  */
126
- lines: Array<Readonly<IPhrasingContentLine>>;
126
+ lines: Readonly<IPhrasingContentLine>[];
127
127
  /**
128
128
  * Link label
129
129
  * Trimmed, Case-Insensitive
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-definition",
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/core-tokenizer": "^2.3.14",
36
- "@yozora/character": "^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",