File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 17
17
DOTNET_SKIP_FIRST_TIME_EXPERIENCE : 1
18
18
DOTNET_NOLOGO : true
19
19
NuGetDirectory : ${{github.workspace}}/RazorUI/nuget
20
- APP_MODE : " Production"
21
- TAILWINDCSS : " ./tailwindcss"
22
20
23
21
jobs :
24
22
create_nuget :
Original file line number Diff line number Diff line change 53
53
54
54
<Target Name =" ProcessScopedCssFileWithTailwind" >
55
55
<Message Importance =" high" Text =" Processing Scoped CSS with Tailwind: $(CurrentScopedCssFile)" />
56
- <Exec Command =" $(TAILWINDCSS) -i $(CurrentScopedCssFile) -o $(CurrentScopedCssFile)" WorkingDirectory =" $(MSBuildProjectDirectory)" />
56
+ <Exec Command =" tailwindcss -i $(CurrentScopedCssFile) -o $(CurrentScopedCssFile)" WorkingDirectory =" $(MSBuildProjectDirectory)" />
57
57
</Target >
58
58
59
59
<Target Name =" PostBuild" AfterTargets =" PostBuildEvent" Condition =" '$(Configuration)'=='Release'" >
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ appStylesPathOut="./wwwroot/css/razor-ui.css"
7
7
8
8
if [[ $1 == " --watch" ]]; then
9
9
echo " Building Tailwind CSS in watch mode..."
10
- $TAILWINDCSS -i $appStylesPathIn -o $appStylesPathOut --watch
10
+ tailwindcss -i $appStylesPathIn -o $appStylesPathOut --watch
11
11
else
12
12
echo " Building Tailwind CSS..."
13
- $TAILWINDCSS -i $appStylesPathIn -o $appStylesPathOut
13
+ tailwindcss -i $appStylesPathIn -o $appStylesPathOut
14
14
fi
You can’t perform that action at this time.
0 commit comments