Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Releases: AngelMunoz/Perla

Fix dotnet tool - single file binaries

29 Sep 02:51
Compare
Choose a tag to compare
Pre-release

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

29 Sep 02:24
Compare
Choose a tag to compare
Bug fixes Pre-release
Pre-release

fix #18 and #19
Self contained single file deploys should work the same as the dotnet tool, for livereload.js and worker.js
Also set System.Text.Json to v6+ to fix a json parsing issue in the .NET 5 version.

Binaries are .NET6 while the dotnet tool allows .NET6 and .NET5

Fix Query String

28 Sep 04:35
Compare
Choose a tag to compare
Fix Query String Pre-release
Pre-release

Fix the document query string, I forgot to save the file before publishing... I will setup CI eventually...

CSS HMR

28 Sep 04:20
Compare
Choose a tag to compare
CSS HMR Pre-release
Pre-release

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

27 Sep 23:08
Compare
Choose a tag to compare
Css Imports Pre-release
Pre-release

Finally fixed #1 via #16 you are now able to import CSS files right within your code, the resulting css file will be injected at dev time and replaced at build time, so you will have everything you need to have in place

Live Reload

26 Sep 04:56
Compare
Choose a tag to compare
Live Reload Pre-release
Pre-release

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

23 Sep 01:12
Compare
Choose a tag to compare
Fix Fable watch Pre-release
Pre-release
v0.6.0

bump

JSPM scopes support

22 Sep 14:56
Compare
Choose a tag to compare
JSPM scopes support Pre-release
Pre-release

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

22 Sep 04:44
Compare
Choose a tag to compare
Add JSPM CDN Support Pre-release
Pre-release

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

21 Sep 18:09
Compare
Choose a tag to compare
fix build command Pre-release
Pre-release

Fix esbuild build command when there are multiple packages as dependencies