@yozora/tokenizer-image 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,18 @@
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
+ - @yozora/tokenizer-link@2.3.15
15
+
3
16
  ## 2.3.14
4
17
 
5
18
  ### Patch Changes
@@ -8,7 +8,7 @@ import { INodeInterval } from '@yozora/character';
8
8
  * is rendered to HTML, this is standardly used as the image’s alt attribute
9
9
  * @see https://github.github.com/gfm/#example-582
10
10
  */
11
- declare function calcImageAlt(nodes: ReadonlyArray<Node>): string;
11
+ declare function calcImageAlt(nodes: readonly Node[]): string;
12
12
 
13
13
  type T = ImageType;
14
14
  type INode = Image;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-image",
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,10 +31,10 @@
31
31
  "README.md"
32
32
  ],
33
33
  "dependencies": {
34
- "@yozora/core-tokenizer": "^2.3.14",
35
- "@yozora/character": "^2.3.14",
36
- "@yozora/ast": "^2.3.14",
37
- "@yozora/tokenizer-link": "^2.3.14"
34
+ "@yozora/ast": "^2.3.15",
35
+ "@yozora/tokenizer-link": "^2.3.15",
36
+ "@yozora/character": "^2.3.15",
37
+ "@yozora/core-tokenizer": "^2.3.15"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "rollup -c ../../rollup.config.mjs",