Releases: AngelMunoz/Perla
Fix dotnet tool - single file binaries
Ahh quick fix... I fixed single file binaries and broke the tool... here's the fix tested on both the tool and the single file binaries
it's hard to catch runtime issues :P
Here's the fix
let assemblyLoc =
Path.GetDirectoryName(Reflection.Assembly.GetEntryAssembly().Location)
if String.IsNullOrWhiteSpace assemblyLoc then
Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName)
else
assemblyLoc
Bug fixes
Fix Query String
Fix the document query string, I forgot to save the file before publishing... I will setup CI eventually...
CSS HMR
CSS HMR is here, I don't have JS HMR thought yet but at least if you're using CSS imports this one is for you
Css Imports
Live Reload
This Release adds #5 which is something that we'd certainly like to have when we're developing stuff this of course opens the road for new cool stuff to build on top of it.
Feel free to give it a try and bring up the feedback!
Fix Fable watch
v0.6.0 bump
JSPM scopes support
this one fixes #13
previously JSPM would work if the package had no dependencies otherwise it would try to look for another import, JSPM provides scopes for such packages which we were not handling correctly when adding a new package from jspm
Add JSPM CDN Support
This release addresses #12 which enables adding packages from different sources thanks to JSPM
- jspm
- jsdelivr
- unkpg
in adition to the existing skypack cdn
fix build command
Fix esbuild build command when there are multiple packages as dependencies