Skip to content

Commit

Permalink
Update Blazor WASM framework helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
mvromer-ge committed Feb 14, 2024
1 parent 38a894f commit a8d6209
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions app-shell/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ <h1 id="home-title">Robots R Us</h1>
"lit-element/": "https://ga.jspm.io/npm:[email protected]/",
"lit-html": "https://ga.jspm.io/npm:[email protected]/lit-html.js",
"lit-html/": "https://ga.jspm.io/npm:[email protected]/",
"blazor-wasm-single-spa": "https://ga.jspm.io/npm:[email protected].2/dist/index.js",
"blazor-wasm-ext-mud-blazor": "https://ga.jspm.io/npm:blazor-wasm-ext-mud-blazor@0.1.0/dist/index.js",
"blazor-wasm-single-spa": "https://ga.jspm.io/npm:[email protected].3/dist/index.js",
"blazor-wasm-ext-mud-blazor": "https://ga.jspm.io/npm:blazor-wasm-ext-mud-blazor@0.2.0/dist/index.js",
"@mfe-demo/catalog": "https://thankful-beach-011007d10.3.azurestaticapps.net/lifecycles.js",
"@mfe-demo/orders": "https://black-dune-0b90ca410.4.azurestaticapps.net/lifecycles.js",
"@mfe-demo/profile": "https://nice-mushroom-0dd3ee710.3.azurestaticapps.net/lifecycles.js"
Expand Down
8 changes: 4 additions & 4 deletions catalog/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion catalog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"description": "Catalog micro-frontend",
"private": true,
"dependencies": {
"blazor-wasm-single-spa": "^0.4.2"
"blazor-wasm-single-spa": "^0.4.3"
}
}
4 changes: 2 additions & 2 deletions catalog/src/CatalogApp/CatalogApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Blazor.WebAssembly.SingleSpa" Version="0.4.2" />
<PackageReference Include="Blazor.WebAssembly.SingleSpa" Version="0.4.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.CustomElements" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.1" PrivateAssets="all" />
Expand All @@ -18,4 +18,4 @@
<ClientAssetsBuildOutputParameter>--outDir</ClientAssetsBuildOutputParameter>
</PropertyGroup>

</Project>
</Project>
16 changes: 8 additions & 8 deletions orders/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions orders/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Orders micro-frontend",
"private": true,
"dependencies": {
"blazor-wasm-ext-mud-blazor": "^0.1.0",
"blazor-wasm-single-spa": "^0.4.2"
"blazor-wasm-ext-mud-blazor": "^0.2.0",
"blazor-wasm-single-spa": "^0.4.3"
}
}
4 changes: 2 additions & 2 deletions orders/src/OrdersApp/OrdersApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Blazor.WebAssembly.SingleSpa" Version="0.4.2" />
<PackageReference Include="Blazor.WebAssembly.SingleSpa" Version="0.4.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.CustomElements" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.1" PrivateAssets="all" />
<PackageReference Include="MudBlazor" Version="6.15.0" />
</ItemGroup>

</Project>
</Project>
2 changes: 1 addition & 1 deletion orders/src/OrdersApp/wwwroot/lifecycles.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ const assetBaseUrl = import.meta.url.substring(0, iLastSlash + 1);
export const { bootstrap, mount, unmount } = singleSpaBlazor({
appTagName: 'mfe-orders-app',
assetBaseUrl,
appExtensions: [mudBlazorExtension],
appExtensions: [mudBlazorExtension()],
});

0 comments on commit a8d6209

Please sign in to comment.