@yozora/tokenizer-list 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 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
@@ -46,7 +46,7 @@ interface IThis extends ITokenizer {
46
46
  * by this ITokenizer if the current list-item is empty.
47
47
  * @see https://github.github.com/gfm/#example-263
48
48
  */
49
- readonly emptyItemCouldNotInterruptedTypes: ReadonlyArray<NodeType>;
49
+ readonly emptyItemCouldNotInterruptedTypes: readonly NodeType[];
50
50
  /**
51
51
  * Should enable task list item (extension).
52
52
  */
@@ -77,7 +77,7 @@ interface ITokenizerProps extends Partial<IBaseBlockTokenizerProps> {
77
77
  declare class ListTokenizer extends BaseBlockTokenizer<T, IToken, INode, IThis> implements IBlockTokenizer<T, IToken, INode, IThis> {
78
78
  constructor(props?: ITokenizerProps);
79
79
  readonly enableTaskListItem: boolean;
80
- readonly emptyItemCouldNotInterruptedTypes: ReadonlyArray<NodeType>;
80
+ readonly emptyItemCouldNotInterruptedTypes: readonly NodeType[];
81
81
  readonly match: IMatchBlockHookCreator<T, IToken, IThis>;
82
82
  readonly parse: IParseBlockHookCreator<T, IToken, INode, IThis>;
83
83
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-list",
3
- "version": "2.3.14",
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/ast": "^2.3.14",
35
- "@yozora/character": "^2.3.14",
36
- "@yozora/core-tokenizer": "^2.3.14"
34
+ "@yozora/ast": "^2.3.16",
35
+ "@yozora/character": "^2.3.16",
36
+ "@yozora/core-tokenizer": "^2.3.16"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "rollup -c ../../rollup.config.mjs",