From 2d295a957b1bc44e3a53b8b7de0fbb8fda34ed24 Mon Sep 17 00:00:00 2001 From: "Alexey Mulyukin (alexprey)" Date: Mon, 24 Aug 2020 14:37:45 +0300 Subject: [PATCH] Prepare package for publish --- CHANGELOG.md | 4 +++- README.md | 18 ++++++++++++++---- examples/Alert.json | 15 ++++++++++++--- examples/Alert.svelte | 17 ++++++++++++++++- examples/Button.json | 2 +- package.json | 5 +++-- 6 files changed, 49 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c91280..3a8cd7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,15 @@ All notable changes to the "svelte-intellisense" extension will be documented in Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -## UNRELEASED +## [3.0.2] 24.08.2020 - 🛠 [Fixed] Fix issue #6 (Build a correct component name from a file name) ``` round.button.svelte -> RoundButton ``` - 🛠 [Fixed] Fix issue #27 (Events is not exposed from exported functions and arrow functions) +- 🛠 [Fixed] Fix issue #31 (Propogated events in markup should be parsed even it was before handled) +- 🛠 [Fixed] Fix issue #32 (Event is not registered when dispatched from functions used as a parameters of another functions) ## [3.0.1] 17.08.2020 diff --git a/README.md b/README.md index ca1943f..949bf73 100644 --- a/README.md +++ b/README.md @@ -7,18 +7,28 @@ Generate a JSON documentation for a Svelte file ## Changelog +### [3.0.2] 24.08.2020 + +- 🛠 **[Fixed]** Fix issue #6 (Build a correct component name from a file name) +``` +round.button.svelte -> RoundButton +``` +- 🛠 **[Fixed]** Fix issue #27 (Events is not exposed from exported functions and arrow functions) +- 🛠 **[Fixed]** Fix issue #31 (Propogated events in markup should be parsed even it was before handled) +- 🛠 **[Fixed]** Fix issue #32 (Event is not registered when dispatched from functions used as a parameters of another functions) + ### [3.0.1] 17.08.2020 -- [Fixed] Solve issue #26, support `export { variables as var }` statement. -- [Added] now interface `SvelteDataItem` provides a new property `localName` with information about internal name of component property. +- 🛠 **[Fixed]** Solve issue #26, support `export { variables as var }` statement. +- ✔ **[Added]** now interface `SvelteDataItem` provides a new property `localName` with information about internal name of component property. ### [3.0.0] 08.08.2020 -- [Fixed] Solve vulnerability issues: +- 🛠 **[Fixed]** Solve vulnerability issues: - Update `espree` to `7.2.0` - Update `htmlparser2` to `3.9.2` - Add dependency to `eslint` to fix issues after upgrading to new versions -- [Breaking] Increase requirement of Node.js to `10.0.0`, Node.js v8 now is not supported, this is related with security isssues above. Please let me know if it still required. +- 🔥 **[Breaking]** Increase requirement of Node.js to `10.0.0`, Node.js v8 now is not supported, this is related with security isssues above. Please let me know if it still required. Full changelog of release versions can be found [here](/CHANGELOG.md) diff --git a/examples/Alert.json b/examples/Alert.json index cce41bd..40e4ee8 100644 --- a/examples/Alert.json +++ b/examples/Alert.json @@ -1,6 +1,6 @@ { "version": 3, - "name": "alert", + "name": "Alert", "data": [ { "visibility": "private", @@ -51,8 +51,17 @@ "computed": [], "methods": [], "components": [], - "description": null, - "keywords": [], + "description": "Simple box with constrast styling to notify users.", + "keywords": [ + { + "name": "component", + "description": "" + }, + { + "name": "example", + "description": " ...}>\nUser-defined content\n" + } + ], "events": [ { "visibility": "public", diff --git a/examples/Alert.svelte b/examples/Alert.svelte index ae78b87..38bfc17 100644 --- a/examples/Alert.svelte +++ b/examples/Alert.svelte @@ -1,4 +1,15 @@