Skip to content

Commit

Permalink
release: vite-plugin-checker@0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework committed Jan 20, 2023
1 parent 47471b6 commit 97baa4a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## <small>0.5.4 (2023-01-20)</small>

* refactor: add skipRuntime flag ([f107514](https://github.com/fi3ework/vite-plugin-checker/commit/f107514))
* refactor: do not use Vite's `CustomPayload` type ([47471b6](https://github.com/fi3ework/vite-plugin-checker/commit/47471b6))
* fix: set plugin as `force: 'pre'` ([034a7ad](https://github.com/fi3ework/vite-plugin-checker/commit/034a7ad))
* fix: use import.meta.hot.on to do client server communication ([aa853a8](https://github.com/fi3ework/vite-plugin-checker/commit/aa853a8))
* fix: vue-tsc should be an optional peer dep ([5e6318e](https://github.com/fi3ework/vite-plugin-checker/commit/5e6318e))
* build: only deploy docs when tagging a commit ([7b54a0c](https://github.com/fi3ework/vite-plugin-checker/commit/7b54a0c))
* test: fix backend-integration root path ([7b2a8a3](https://github.com/fi3ework/vite-plugin-checker/commit/7b2a8a3))
* docs: add trobleshooting ([234695b](https://github.com/fi3ework/vite-plugin-checker/commit/234695b))
* docs: do not add `--fix` to lint command ([990a088](https://github.com/fi3ework/vite-plugin-checker/commit/990a088))
* docs: pnpm workaround ([df1a744](https://github.com/fi3ework/vite-plugin-checker/commit/df1a744))
* docs: use script ([cb0ebe5](https://github.com/fi3ework/vite-plugin-checker/commit/cb0ebe5))
* feat: compatible with backend integration apps ([1c1d4b5](https://github.com/fi3ework/vite-plugin-checker/commit/1c1d4b5))



## <small>0.5.3 (2022-12-22)</small>

* ci: clean Netlify scripts for pnpm (#195) ([ab5798f](https://github.com/fi3ework/vite-plugin-checker/commit/ab5798f)), closes [#195](https://github.com/fi3ework/vite-plugin-checker/issues/195)
Expand Down
2 changes: 1 addition & 1 deletion packages/vite-plugin-checker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-checker",
"version": "0.5.3",
"version": "0.5.4",
"description": "Vite plugin that runs TypeScript type checker on a separate process.",
"types": "./dist/esm/main.d.ts",
"main": "./dist/cjs/main.js",
Expand Down
3 changes: 2 additions & 1 deletion playground/config-default/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { text } from './text'

var hello = 'Hello'
const hello = 'Hello'

// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const rootDom = document.querySelector('#root')! as HTMLElement
rootDom.innerHTML = hello + text

Expand Down

0 comments on commit 97baa4a

Please sign in to comment.