vite-plugin-solid
Advanced tools
Comparing version 1.3.0 to 1.3.1
# Changelog | ||
<a name="1.3.1"></a> | ||
## 1.3.1 (2021-03-15) | ||
### Fixed | ||
- 🐛 Merge arrays together' [[a2e7837](https://github.com/amoutonbrady/vite-plugin-solid/commit/a2e783716c8bb2e304e03a562cfcaaa0a2c3831f)] | ||
### Miscellaneous | ||
- 📝 Adding changelog [[2b2ade7](https://github.com/amoutonbrady/vite-plugin-solid/commit/2b2ade70c7d85237a47e403f4f41426505eeb1c5)] | ||
<a name="1.3.0"></a> | ||
@@ -4,0 +16,0 @@ ## 1.3.0 (2021-03-09) |
@@ -26,3 +26,3 @@ 'use strict'; | ||
}] : []; | ||
return mergeAnything.merge(userConfig, { | ||
return mergeAnything.mergeAndConcat(userConfig, { | ||
/** | ||
@@ -29,0 +29,0 @@ * We only need esbuild on .ts or .js files. |
import { readFileSync } from 'fs'; | ||
import { transformAsync } from '@babel/core'; | ||
import { merge } from 'merge-anything'; | ||
import { mergeAndConcat } from 'merge-anything'; | ||
@@ -24,3 +24,3 @@ const runtimePublicPath = '/@solid-refresh'; | ||
}] : []; | ||
return merge(userConfig, { | ||
return mergeAndConcat(userConfig, { | ||
/** | ||
@@ -27,0 +27,0 @@ * We only need esbuild on .ts or .js files. |
{ | ||
"name": "vite-plugin-solid", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "solid-js integration plugin for vite 2", | ||
@@ -5,0 +5,0 @@ "files": ["dist"], |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
37241