Skip to content

Commit

Permalink
fix: add missed dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
alexprey committed Dec 15, 2021
1 parent 7372360 commit 9b2cc61
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Generate a JSON documentation for a Svelte file.
## Table of Contents <!-- omit in toc -->

- [Changelog](#changelog)
- [[4.2.1] 15.12.2021](#421-15122021)
- [[4.2.0] 14.12.2021](#420-14122021)
- [[4.1.0] 19.02.2021](#410-19022021)
- [[4.0.0] 25.01.2021](#400-25012021)
- [Install](#install)
Expand All @@ -28,17 +30,20 @@ Generate a JSON documentation for a Svelte file.

## Changelog

### [4.2.1] 15.12.2021
- 🛠 **[Fixed]** - Add missed dependency.

### [4.2.0] 14.12.2021

- 🔒 **[Fixed]** Upgrade all dependecies to latest version to solve known vulnarability issues.
-**[Added]** Add support ES6 default value assignment for method parameter [Issue #75](https://github.com/alexprey/sveltedoc-parser/issues/75). Thanks for @ekhaled.
-**[Added]** Add support of method parsing when it assigned to identifier [Issue #78](https://github.com/alexprey/sveltedoc-parser/issues/78). Thanks for @ekhaled.
-**[Added]** Add support ES6 default value assignment for method parameter [Issue #75](https://github.com/alexprey/sveltedoc-parser/issues/75). Thanks for [@ekhaled](https://github.com/ekhaled).
-**[Added]** Add support of method parsing when it assigned to identifier [Issue #78](https://github.com/alexprey/sveltedoc-parser/issues/78). Thanks for [@ekhaled](https://github.com/ekhaled).
-**[Added]** Extend typings to support `self` and `trusted` event modifiers [Issue #80].
-**[Added]** Introduce `JSDocTypeFunction` to support functions types in variable definitions and provide details about function parameters and methods.
-**[Added]** Extend `JSDocType` to support new `JSDocTypeFunction`
-**[Added]** Extend `JSDocType` to support new `JSDocTypeFunction`.
-**[Added]** Improve type infering from assigned value. Currently support simple infering: `array`, `object`, `function`.
- 🛠 **[Fixed]** Fix the [Issue #67](https://github.com/alexprey/sveltedoc-parser/issues/67), [Issue #69](https://github.com/alexprey/sveltedoc-parser/issues/69): specifier comments are not parsed properly; Thanks to @ekhaled
- 🛠 **[Fixed]** Fix the [Issue #72](https://github.com/alexprey/sveltedoc-parser/issues/72): Module context scripts look for the wrong attribute
- 🛠 **[Fixed]** Fix the [Issue #67](https://github.com/alexprey/sveltedoc-parser/issues/67), [Issue #69](https://github.com/alexprey/sveltedoc-parser/issues/69): specifier comments are not parsed properly; Thanks to [@ekhaled](https://github.com/ekhaled).
- 🛠 **[Fixed]** Fix the [Issue #72](https://github.com/alexprey/sveltedoc-parser/issues/72): Module context scripts look for the wrong attribute.
- 🛠 **[Fixed]** Fix the [Issue #83](https://github.com/alexprey/sveltedoc-parser/issues/83): Default value and keywords of exported aliases not merged.

### [4.1.0] 19.02.2021
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sveltedoc-parser",
"version": "4.3.0",
"version": "4.3.1",
"description": "Generate a JSON documentation for a Svelte file",
"main": "index.js",
"types": "./typings.d.ts",
Expand Down Expand Up @@ -39,6 +39,7 @@
"homepage": "https://github.com/alexprey/sveltedoc-parser",
"dependencies": {
"espree": "9.2.0",
"eslint": "8.4.1",
"htmlparser2-svelte": "4.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit 9b2cc61

Please sign in to comment.