@yozora/tokenizer-admonition 2.0.0-alpha.3 → 2.0.0

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -180,7 +180,7 @@ Name | Type | Required | Default
180
180
  ### Node Type
181
181
 
182
182
  ```typescript
183
- export interface Admonition extends YastParent<'admonition'> {
183
+ export interface Admonition extends Parent<'admonition'> {
184
184
  type: 'admonition'
185
185
  /**
186
186
  * Keyword of an admonition.
@@ -189,11 +189,11 @@ export interface Admonition extends YastParent<'admonition'> {
189
189
  /**
190
190
  * Admonition title.
191
191
  */
192
- title: YastNode[]
192
+ title: Node[]
193
193
  /**
194
194
  * Admonition body.
195
195
  */
196
- children: YastNode[]
196
+ children: Node[]
197
197
  }
198
198
  ```
199
199
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-admonition",
3
- "version": "2.0.0-alpha.3",
3
+ "version": "2.0.0",
4
4
  "description": "Tokenizer for processing admonitions",
5
5
  "author": {
6
6
  "name": "guanghechen",
@@ -42,10 +42,10 @@
42
42
  "test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
43
43
  },
44
44
  "dependencies": {
45
- "@yozora/ast": "^2.0.0-alpha.3",
46
- "@yozora/character": "^2.0.0-alpha.3",
47
- "@yozora/core-tokenizer": "^2.0.0-alpha.3",
48
- "@yozora/tokenizer-fenced-block": "^2.0.0-alpha.3"
45
+ "@yozora/ast": "^2.0.0",
46
+ "@yozora/character": "^2.0.0",
47
+ "@yozora/core-tokenizer": "^2.0.0",
48
+ "@yozora/tokenizer-fenced-block": "^2.0.0"
49
49
  },
50
- "gitHead": "9f274fc7487a8c1dd213405d92508f9a7621f730"
50
+ "gitHead": "65e99d1709fdd1c918465dce6b1e91de96bdab5e"
51
51
  }