diff --git a/CHANGELOG.md b/CHANGELOG.md index 15f6c64..5bdbd77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,27 @@ +## [0.9.0](https://github.com/FranckFreiburger/vue3-sfc-loader/compare/v0.8.4...v0.9.0) (2024-01-11) + + +### ⚠ BREAKING CHANGES + +* **core:** remove IE11 support + +### Features + +* **core:** add devMode option ([c2e8d74](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/c2e8d7435d7221d751e51679bfbe0c2dafed607f)), closes [#123](https://github.com/FranckFreiburger/vue3-sfc-loader/issues/123) +* **core:** add isCustomElement option ([7a88a1c](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/7a88a1c484b7ee9b16af7ae0531631fc0876ff95)), closes [#158](https://github.com/FranckFreiburger/vue3-sfc-loader/issues/158) +* **core:** add typescript syntax support in SFS script and script setup ([9722616](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/9722616af301819a80eeb8b4e454023d143078c9)), closes [#156](https://github.com/FranckFreiburger/vue3-sfc-loader/issues/156) [#151](https://github.com/FranckFreiburger/vue3-sfc-loader/issues/151) [#131](https://github.com/FranckFreiburger/vue3-sfc-loader/issues/131) +* **core:** also handle lang="ts" for vue2 ([9264f7f](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/9264f7f4c63457b7ef17cf7bd32f3d1654aaf4dc)) +* **core:** handle .ts files ([04628b1](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/04628b11e0eba80287f16a4a4cabe434932ee565)) +* **core:** remove IE11 support ([3644f8c](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/3644f8c3c005a1537f62cc592ccfa1846647b959)) + + +### Bug Fixes + +* **build:** noop chalk and @babel/highlight ([c896fba](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/c896fbab5f28096da2dfc5dde1cf629dca75fb43)) +* **core:** handle ExportAllDeclaration (support of export * from ...) ([8e9d213](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/8e9d213521ceec93a4062efab8d0fbf1fcd63645)), closes [#168](https://github.com/FranckFreiburger/vue3-sfc-loader/issues/168) +* **docs:** typo ([a5967be](https://github.com/FranckFreiburger/vue3-sfc-loader/commit/a5967be18def9643b51cc8cd070f032fd1520d75)) + ### [0.8.4](https://github.com/FranckFreiburger/vue3-sfc-loader/compare/v0.8.3...v0.8.4) (2021-07-08) ### [0.8.3](https://github.com/FranckFreiburger/vue3-sfc-loader/compare/v0.8.2...v0.8.3) (2021-06-30) diff --git a/package.json b/package.json index e7c6559..92558fe 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "url": "https://github.com/FranckFreiburger/vue3-sfc-loader" }, "license": "MIT", - "version": "0.8.4", + "version": "0.9.0", "browserslist": "> 1%, last 2 versions, Firefox ESR, not dead", "main": "./dist/vue3-sfc-loader.js", "module": "./dist/vue3-sfc-loader.esm.js",