Skip to content

Commit 73e9991

Browse files
committed
Make everything noisy
1 parent 19007f8 commit 73e9991

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

eng/targets/Npm.Common.targets

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

1919
<Target Name="Restore">
2020
<Message Importance="High" Text="Running yarn install on $(MSBuildProjectFullPath)" />
21-
<Yarn Command="install $(InstallArgs)" />
21+
<Yarn Command="install $(InstallArgs)" StandardOutputImportance="High" StandardErrorImportance="High" />
2222
</Target>
2323

2424
<Target Name="PrepareForBuild">

src/Components/Browser.JS/Microsoft.AspNetCore.Components.Browser.JS.npmproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
Inputs="@(WebpackInputs)"
2020
Outputs="@(WebPackOutputs)">
2121
<RemoveDir Directories="dist" />
22-
<Yarn Command="run build:debug" />
23-
<Yarn Command="run build:production" />
22+
<Yarn Command="run build:debug" StandardOutputImportance="High" StandardErrorImportance="High" />
23+
<Yarn Command="run build:production" StandardOutputImportance="High" StandardErrorImportance="High" />
2424
</Target>
2525

2626
</Project>

0 commit comments

Comments
 (0)