File tree 3 files changed +17
-1
lines changed
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
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
+
4
19
## v0.2.1...main
5
20
6
21
[ compare changes] ( https://github.com/stacksjs/vite-plugin-local/compare/v0.2.1...main )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vite-plugin-local" ,
3
3
"type" : " module" ,
4
- "version" : " 0.3.0 " ,
4
+ "version" : " 0.3.1 " ,
5
5
"description" : " A Vite plugin to enable a development environment for minimalists." ,
6
6
"author" :
" Chris Breuer <[email protected] >" ,
7
7
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ export function VitePluginLocal(options: VitePluginLocalOptions): Plugin {
137
137
configResolved ( resolvedConfig ) {
138
138
// Early exit if we're in build mode
139
139
if ( resolvedConfig . command === 'build' )
140
+ // eslint-disable-next-line no-useless-return
140
141
return
141
142
} ,
142
143
You can’t perform that action at this time.
0 commit comments