diff --git a/CHANGELOG.md b/CHANGELOG.md index a62d324..02a413a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.0](https://github.com/IBM/carbon-icons-svelte/releases/tag/v0.8.0) - 2021-06-17 + +- use `svelte-preprocess` to preprocess TypeScript in Svelte files and remove `style` blocks + ## [0.7.1](https://github.com/IBM/carbon-icons-svelte/releases/tag/v0.7.1) - 2021-02-20 - only parse files with the `.svelte` file extension diff --git a/README.md b/README.md index 3cf3166..d6c63a8 100644 --- a/README.md +++ b/README.md @@ -175,6 +175,9 @@ The [integration](integration) folder contains example set-ups: - [single-export](integration/single-export): library that exports one component - [multi-export](integration/multi-export): multi-component library without JSDoc annotations (types are inferred) - [multi-export-typed](integration/multi-export-typed): multi-component library with JSDoc annotations +- [multi-export-typed-ts-only](integration/multi-export-typed-ts-only): multi-component library that only generates TS definitions +- [glob](integration/glob): library that uses the glob strategy to collect/analyze \*.svelte files +- [carbon](integration/carbon): full `carbon-components-svelte` example ### CLI diff --git a/package.json b/package.json index cf0b530..616381a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sveld", - "version": "0.7.1", + "version": "0.8.0", "license": "Apache-2.0", "description": "Generate TypeScript definitions for your Svelte components.", "author": "Eric Liu (https://github.com/metonym)",