Skip to content

Commit

Permalink
Improved documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed May 2, 2024
1 parent f2074ef commit e1eacf2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
## 0.5.0 (tbd)

- Fixed issue with broken assets
- Fixed emulator running debugged micro frontend assemblies in default context
- Added `PiralOptions` to configure behavior
- Added `IsolatedAssemblies` option
- Added support for relative paths in `AppShell` of SDK (#2)
- Added new documentation page (blazor.piral.io)
- Added support for `IConfiguration` of micro frontends
- Added roadmap (#3)

## 0.4.1 (February 16, 2024)
Expand Down
4 changes: 3 additions & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const sidebars = (): DefaultTheme.SidebarItem[] => [
{ text: "Emulator", link: "/getting-started/server/emulator" },
{ text: "Micro Frontend", link: "/getting-started/server/microfrontend" },
{ text: "Publishing", link: "/getting-started/server/publishing" },
{ text: "Runtime Configuration", link: "/getting-started/server/environment" },
],
},
{
Expand All @@ -29,7 +30,7 @@ const sidebars = (): DefaultTheme.SidebarItem[] => [
{ text: "Micro Frontend", link: "/getting-started/spa/microfrontend" },
{ text: "Debugging", link: "/getting-started/spa/debugging" },
{ text: "Publishing", link: "/getting-started/spa/publishing" },
{ text: "Configuration", link: "/getting-started/spa/configuration" },
{ text: "Build Configuration", link: "/getting-started/spa/configuration" },
{ text: "Dependency Injection", link: "/getting-started/spa/dependency-injection" },
{ text: "Page Components", link: "/getting-started/spa/pages" },
{ text: "Extension Components", link: "/getting-started/spa/extensions" },
Expand All @@ -39,6 +40,7 @@ const sidebars = (): DefaultTheme.SidebarItem[] => [
{ text: "Parameters", link: "/getting-started/spa/parameters" },
{ text: "Pilet Service", link: "/getting-started/spa/pilet-service" },
{ text: "Localization", link: "/getting-started/spa/localization" },
{ text: "Runtime Configuration", link: "/getting-started/server/environment" },
],
},
{
Expand Down
3 changes: 3 additions & 0 deletions docs/getting-started/server/environment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Environment Configuration

...
3 changes: 3 additions & 0 deletions docs/getting-started/spa/environment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Environment Configuration

...
2 changes: 2 additions & 0 deletions src/Piral.Blazor.Sdk/Emulator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ private static string TryResolveLocalPackageAt(string path)
}
}

#pragma warning disable CS8603 // Possible null reference return.
return null;
#pragma warning restore CS8603 // Possible null reference return.
}

private static string TryResolveLocalPackage(string root, string name)
Expand Down

0 comments on commit e1eacf2

Please sign in to comment.