Skip to content

Commit

Permalink
update node packages (#275)
Browse files Browse the repository at this point in the history
Co-authored-by: mihails.kuzmins <[email protected]>
  • Loading branch information
MihailsKuzmins and MihailsKuzminsDG authored Sep 15, 2024
1 parent 5e0141e commit 52cacf3
Show file tree
Hide file tree
Showing 5 changed files with 2,139 additions and 5,623 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: 'recursive'

- name: Install .NET 6
uses: actions/setup-dotnet@v1
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
run: dotnet test -c ${{ env.Configuration }} -v m --no-restore --no-build

- name: Create NuGet Artifacts
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ env.ArtifactsName }}
path: '**/*.nupkg'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void ConfigureServices(IServiceCollection services)
services.AddMudMarkdownServices();
// Optionally if the default clipboard functionality fails it is possible to add a custom service
// NB! MauiClipboardService is just an example
builder.Services.AddMudMarkdownClipboardService<MauiClipboardService>();
services.AddMudMarkdownClipboardService<MauiClipboardService>();
}
```
For the Blazor WebAssembly in the `Program.cs` add this method.
Expand Down
8 changes: 8 additions & 0 deletions samples/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
Light and dark themes are supported out-of-the-box. See [this post](https://mudblazor.com/customization/theming/overview) for steps how to toggle light and dark themes.
Or see WebAssembly or Server samples.

# Debug
The following steps are required in order to run the samples:
- Download node.js from [downloads](https://nodejs.org/en/download/package-manager)
- Navigate to src\MudBlazor.Markdown
- Open a console and run `npm ci`
- Run `npm run build`

## Headers
![header-light](images/heading-light.jpg)
![header-dark](images/heading-dark.jpg)
Expand Down
Loading

0 comments on commit 52cacf3

Please sign in to comment.