Skip to content

Commit

Permalink
docs: trying to resolve deploy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
desmondinho committed Oct 4, 2024
1 parent fe29b89 commit b957b25
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/LumexUI.Docs/LumexUI.Docs/LumexUI.Docs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@
<Exec Command="$(GeneratorCommand)" />
</Target>

<Target Name="CheckLumexUIPackage" AfterTargets="GenerateDocs" BeforeTargets="CopyThemeFiles" Condition="'$(OS)' == 'Unix'">
<Message Text="Listing contents of '$(PkgLumexUI)'" Importance="high" />
<Exec Command="find $(PkgLumexUI)/theme" />
</Target>

<!-- Copy theme files before Npm -->
<Target Name="CopyThemeFiles" AfterTargets="GenerateDocs" BeforeTargets="Npm">
<Target Name="CopyThemeFiles" AfterTargets="CheckLumexUIPackage" BeforeTargets="Npm">
<ItemGroup>
<ThemeFiles Include="$(PkgLumexUI)/theme/**/*" />
<ThemeFiles Include="$(PkgLumexUI)/theme/**" />
</ItemGroup>
<Message Text="LumexUI.Docs: copying LumexUI package contents from '$(PkgLumexUI)' to '$(OutDir)theme'..." Importance="high" />
<Message Text="LumexUI.Docs: contents to copy @(ThemeFiles)" Importance="high" />
Expand Down

0 comments on commit b957b25

Please sign in to comment.