Skip to content

Commit 2c1b649

Browse files
committed
chore: release v0.3.1
1 parent fdadacb commit 2c1b649

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Changelog
22

33

4+
## v0.3.0...main
5+
6+
[compare changes](https://github.com/stacksjs/vite-plugin-local/compare/v0.3.0...main)
7+
8+
### 🏡 Chore
9+
10+
- Add cleanup docs ([8e1332a](https://github.com/stacksjs/vite-plugin-local/commit/8e1332a))
11+
- Enhance docs ([9dec0c9](https://github.com/stacksjs/vite-plugin-local/commit/9dec0c9))
12+
- Adjust sudo check ([fdadacb](https://github.com/stacksjs/vite-plugin-local/commit/fdadacb))
13+
14+
### ❤️ Contributors
15+
16+
- Chris ([@chrisbbreuer](http://github.com/chrisbbreuer))
17+
- Cab-mikee ([@cab-mikee](http://github.com/cab-mikee))
18+
419
## v0.2.1...main
520

621
[compare changes](https://github.com/stacksjs/vite-plugin-local/compare/v0.2.1...main)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vite-plugin-local",
33
"type": "module",
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"description": "A Vite plugin to enable a development environment for minimalists.",
66
"author": "Chris Breuer <[email protected]>",
77
"license": "MIT",

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ export function VitePluginLocal(options: VitePluginLocalOptions): Plugin {
137137
configResolved(resolvedConfig) {
138138
// Early exit if we're in build mode
139139
if (resolvedConfig.command === 'build')
140+
// eslint-disable-next-line no-useless-return
140141
return
141142
},
142143

0 commit comments

Comments
 (0)