Skip to content

Commit 433ca3e

Browse files
Copilotmattleibow
andcommitted
Fix TypeScript Inputs to track all .ts files; fix typo splatts → splats
Co-authored-by: mattleibow <1096616+mattleibow@users.noreply.github.com>
1 parent c4eb97d commit 433ca3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/SkiaSharp.Extended.UI.Blazor/Controls/SKTouchCanvasView.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace SkiaSharp.Extended.UI.Blazor.Controls;
1212
/// <see cref="SKTouchEventArgs"/> and raises the <see cref="Touch"/> event,
1313
/// matching the MAUI touch API for shared source compatibility.</para>
1414
/// <para>Pointer events are captured using JavaScript interop on the canvas element.
15-
/// No wrapper element is added; the upstream <c>SKCanvasView</c> splatts
15+
/// No wrapper element is added; the upstream <c>SKCanvasView</c> splats
1616
/// <c>AdditionalAttributes</c> directly onto its <c>&lt;canvas&gt;</c>, so a
1717
/// <c>data-sk-touch-id</c> attribute is used to locate the element from JS.</para>
1818
/// </remarks>

source/SkiaSharp.Extended.UI.Blazor/SkiaSharp.Extended.UI.Blazor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
<!-- Compile TypeScript before build; requires tsc (npm i -g typescript) -->
4747
<Target Name="CompileTypeScript" BeforeTargets="BeforeBuild"
48-
Inputs="Scripts/SKTouchInterop.ts"
48+
Inputs="@(None->WithMetadataValue('Extension', '.ts'))"
4949
Outputs="wwwroot/SKTouchInterop.js">
5050
<Exec Command="tsc -p tsconfig.json" WorkingDirectory="$(MSBuildProjectDirectory)" />
5151
</Target>

0 commit comments

Comments
 (0)