@yozora/tokenizer-inline-math 2.3.13 → 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,46 +1,58 @@
1
1
  # Change Log
2
2
 
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
3
+ ## 2.3.15
5
4
 
6
- ## <small>2.3.13 (2025-11-30)</small>
7
-
8
- **Note:** Version bump only for package @yozora/tokenizer-inline-math
5
+ ### Patch Changes
9
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
10
14
 
15
+ ## 2.3.14
11
16
 
17
+ ### Patch Changes
12
18
 
19
+ - Patch release for all public packages: align monorepo tooling with pnpm + changesets, update
20
+ package metadata and docs, and include test and configuration improvements for release
21
+ consistency.
22
+ - Updated dependencies:
23
+ - @yozora/ast@2.3.14
24
+ - @yozora/character@2.3.14
25
+ - @yozora/core-tokenizer@2.3.14
13
26
 
14
- ## <small>2.3.12 (2025-02-26)</small>
15
-
16
- * :bookmark: release: publish v2.3.10 ([a36b4dd](https://github.com/yozorajs/yozora/commit/a36b4dd))
17
- * :bookmark: release: publish v2.3.11 ([dcc0a95](https://github.com/yozorajs/yozora/commit/dcc0a95))
18
- * :bookmark: release: publish v2.3.8 ([c4ddb8b](https://github.com/yozorajs/yozora/commit/c4ddb8b))
19
- * :bookmark: release: publish v2.3.9 ([d125df1](https://github.com/yozorajs/yozora/commit/d125df1))
20
- * :bug: fix(inline-math): the delimiter could be adjacent to a punctuation character ([a6071be](https://github.com/yozorajs/yozora/commit/a6071be))
21
- * improve(inline-math): the inline dollars should take high processing priority so the delimiter bound ([3dba582](https://github.com/yozorajs/yozora/commit/3dba582))
22
- * improve(inlineMath): support more than one dollar sign as delimiter ([bf17c33](https://github.com/yozorajs/yozora/commit/bf17c33))
23
- * chore: fix nx dependencies ([d11d405](https://github.com/yozorajs/yozora/commit/d11d405))
27
+ All notable changes to this project will be documented in this file. See
28
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
24
29
 
30
+ ## <small>2.3.13 (2025-11-30)</small>
25
31
 
32
+ **Note:** Version bump only for package @yozora/tokenizer-inline-math
26
33
 
34
+ ## <small>2.3.12 (2025-02-26)</small>
27
35
 
36
+ - :bookmark: release: publish v2.3.10 ([a36b4dd](https://github.com/yozorajs/yozora/commit/a36b4dd))
37
+ - :bookmark: release: publish v2.3.11 ([dcc0a95](https://github.com/yozorajs/yozora/commit/dcc0a95))
38
+ - :bookmark: release: publish v2.3.8 ([c4ddb8b](https://github.com/yozorajs/yozora/commit/c4ddb8b))
39
+ - :bookmark: release: publish v2.3.9 ([d125df1](https://github.com/yozorajs/yozora/commit/d125df1))
40
+ - :bug: fix(inline-math): the delimiter could be adjacent to a punctuation character
41
+ ([a6071be](https://github.com/yozorajs/yozora/commit/a6071be))
42
+ - improve(inline-math): the inline dollars should take high processing priority so the delimiter
43
+ bound ([3dba582](https://github.com/yozorajs/yozora/commit/3dba582))
44
+ - improve(inlineMath): support more than one dollar sign as delimiter
45
+ ([bf17c33](https://github.com/yozorajs/yozora/commit/bf17c33))
46
+ - chore: fix nx dependencies ([d11d405](https://github.com/yozorajs/yozora/commit/d11d405))
28
47
 
29
48
  ## <small>2.3.11 (2025-01-13)</small>
30
49
 
31
- * improve(inline-math): the inline dollars should take high processing priority so the delimiter bound ([3dba582](https://github.com/yozorajs/yozora/commit/3dba582))
32
-
33
-
34
-
35
-
50
+ - improve(inline-math): the inline dollars should take high processing priority so the delimiter
51
+ bound ([3dba582](https://github.com/yozorajs/yozora/commit/3dba582))
36
52
 
37
53
  ## <small>2.3.10 (2025-01-09)</small>
38
54
 
39
- * chore: fix nx dependencies ([d11d405](https://github.com/yozorajs/yozora/commit/d11d405))
40
-
41
-
42
-
43
-
55
+ - chore: fix nx dependencies ([d11d405](https://github.com/yozorajs/yozora/commit/d11d405))
44
56
 
45
57
  # Change Log
46
58
 
package/README.md CHANGED
@@ -64,11 +64,6 @@
64
64
  npm install --save @yozora/tokenizer-inline-math
65
65
  ```
66
66
 
67
- - yarn
68
-
69
- ```bash
70
- yarn add @yozora/tokenizer-inline-math
71
- ```
72
67
 
73
68
  ## Usage
74
69
 
@@ -1,4 +1,4 @@
1
- import { ITokenDelimiter, IPartialInlineToken, ITokenizer, IBaseInlineTokenizerProps, IMatchInlineHookCreator, IParseInlineHookCreator, BaseInlineTokenizer, IInlineTokenizer } from '@yozora/core-tokenizer';
1
+ import { ITokenizer, IPartialInlineToken, IBaseInlineTokenizerProps, ITokenDelimiter, IMatchInlineHookCreator, IParseInlineHookCreator, BaseInlineTokenizer, IInlineTokenizer } from '@yozora/core-tokenizer';
2
2
  import { InlineMathType, InlineMath } from '@yozora/ast';
3
3
 
4
4
  type T = InlineMathType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-inline-math",
3
- "version": "2.3.13",
3
+ "version": "2.3.15",
4
4
  "description": "Tokenizer for processing inline math (formulas)",
5
5
  "author": {
6
6
  "name": "guanghechen",
@@ -11,7 +11,7 @@
11
11
  "url": "https://github.com/yozorajs/yozora.git",
12
12
  "directory": "tokenizers/inline-math"
13
13
  },
14
- "homepage": "https://github.com/yozorajs/yozora/tree/v2.3.12/tokenizers/inline-math",
14
+ "homepage": "https://github.com/yozorajs/yozora/tree/v2.3.13/tokenizers/inline-math#readme",
15
15
  "keywords": [
16
16
  "yozora",
17
17
  "markdown",
@@ -32,9 +32,6 @@
32
32
  "main": "./lib/cjs/index.cjs",
33
33
  "module": "./lib/esm/index.mjs",
34
34
  "license": "MIT",
35
- "engines": {
36
- "node": ">= 16.0.0"
37
- },
38
35
  "files": [
39
36
  "lib/",
40
37
  "!lib/**/*.map",
@@ -44,9 +41,15 @@
44
41
  "README.md"
45
42
  ],
46
43
  "dependencies": {
47
- "@yozora/ast": "^2.3.13",
48
- "@yozora/character": "^2.3.13",
49
- "@yozora/core-tokenizer": "^2.3.13"
44
+ "@yozora/core-tokenizer": "^2.3.15",
45
+ "@yozora/ast": "^2.3.15",
46
+ "@yozora/character": "^2.3.15"
50
47
  },
51
- "gitHead": "583531be6f7f5ec72ffdd01eab436de8e1ed4f17"
52
- }
48
+ "scripts": {
49
+ "build": "rollup -c ../../rollup.config.mjs",
50
+ "clean": "rimraf lib",
51
+ "test": "vitest run --config ../../vitest.config.ts",
52
+ "test:coverage": "vitest run --config ../../vitest.config.ts --coverage",
53
+ "test:update": "vitest run --config ../../vitest.config.ts -u"
54
+ }
55
+ }