diff --git a/CHANGELOG.md b/CHANGELOG.md index 3197f60..92bfc92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ # Changelog +## v0.3.0...main + +[compare changes](https://github.com/stacksjs/vite-plugin-local/compare/v0.3.0...main) + +### 🏡 Chore + +- Add cleanup docs ([8e1332a](https://github.com/stacksjs/vite-plugin-local/commit/8e1332a)) +- Enhance docs ([9dec0c9](https://github.com/stacksjs/vite-plugin-local/commit/9dec0c9)) +- Adjust sudo check ([fdadacb](https://github.com/stacksjs/vite-plugin-local/commit/fdadacb)) + +### ❤️ Contributors + +- Chris ([@chrisbbreuer](http://github.com/chrisbbreuer)) +- Cab-mikee ([@cab-mikee](http://github.com/cab-mikee)) + ## v0.2.1...main [compare changes](https://github.com/stacksjs/vite-plugin-local/compare/v0.2.1...main) diff --git a/package.json b/package.json index 8984c27..def211f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vite-plugin-local", "type": "module", - "version": "0.3.0", + "version": "0.3.1", "description": "A Vite plugin to enable a development environment for minimalists.", "author": "Chris Breuer ", "license": "MIT", diff --git a/src/index.ts b/src/index.ts index 92394e0..9c4c97c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -137,6 +137,7 @@ export function VitePluginLocal(options: VitePluginLocalOptions): Plugin { configResolved(resolvedConfig) { // Early exit if we're in build mode if (resolvedConfig.command === 'build') + // eslint-disable-next-line no-useless-return return },