Skip to content

Commit

Permalink
chore(release): 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Dec 2, 2020
1 parent af95d26 commit 9a3711f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/classes/src_tokenizer.tokenizer.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ the tokens output.

### constructor

\+ **new Tokenizer**(`template`: string, `tagsDef`: [Tags](../interfaces/src_contracts.tags.md), `options`: { filename: string ; onLine?: undefined \| (line: string) => string }): [Tokenizer](src_tokenizer.tokenizer.md)
\+ **new Tokenizer**(`template`: string, `tagsDef`: [Tags](../interfaces/src_contracts.tags.md), `options`: { claimTag?: undefined \| (name: string) => [LexerTagDefinitionContract](../interfaces/src_contracts.lexertagdefinitioncontract.md) \| null ; filename: string ; onLine?: undefined \| (line: string) => string }): [Tokenizer](src_tokenizer.tokenizer.md)

#### Parameters:

Name | Type |
------ | ------ |
`template` | string |
`tagsDef` | [Tags](../interfaces/src_contracts.tags.md) |
`options` | { filename: string ; onLine?: undefined \| (line: string) => string } |
`options` | { claimTag?: undefined \| (name: string) => [LexerTagDefinitionContract](../interfaces/src_contracts.lexertagdefinitioncontract.md) \| null ; filename: string ; onLine?: undefined \| (line: string) => string } |

**Returns:** [Tokenizer](src_tokenizer.tokenizer.md)

Expand Down
3 changes: 2 additions & 1 deletion docs/modules/src_detector.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ___

### getTag

**getTag**(`content`: string, `filename`: string, `line`: number, `col`: number, `tags`: [Tags](../interfaces/src_contracts.tags.md)): [RuntimeTag](src_contracts.md#runtimetag) \| null
**getTag**(`content`: string, `filename`: string, `line`: number, `col`: number, `tags`: [Tags](../interfaces/src_contracts.tags.md), `claimTag?`: undefined \| (name: string) => [LexerTagDefinitionContract](../interfaces/src_contracts.lexertagdefinitioncontract.md) \| null): [RuntimeTag](src_contracts.md#runtimetag) \| null

Returns runtime tag node if tag is detected and is a registered tag

Expand All @@ -52,5 +52,6 @@ Name | Type |
`line` | number |
`col` | number |
`tags` | [Tags](../interfaces/src_contracts.tags.md) |
`claimTag?` | undefined \| (name: string) => [LexerTagDefinitionContract](../interfaces/src_contracts.lexertagdefinitioncontract.md) \| null |

**Returns:** [RuntimeTag](src_contracts.md#runtimetag) \| null
2 changes: 1 addition & 1 deletion npm-audit.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h5 class="card-title">
<div class="card">
<div class="card-body">
<h5 class="card-title">
December 2nd 2020, 12:37:29 pm
December 2nd 2020, 12:40:05 pm
</h5>
<p class="card-text">Last updated</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edge-lexer",
"version": "3.2.0",
"version": "3.2.1",
"description": "Parses raw markup files to converts them to Edge tokens",
"main": "build/index.js",
"files": [
Expand Down

0 comments on commit 9a3711f

Please sign in to comment.