diff options
author | crupest <crupest@outlook.com> | 2020-07-14 00:16:03 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-14 00:16:03 +0800 |
commit | 0ec1a8c7d46b185e68906a04dbe9abe9a4d4ae52 (patch) | |
tree | 1fe32f6ca5bf12ab56859afd6e3832d40b95ef81 | |
parent | 7ae632624d57b4ca844eacdc7309c836a11565f8 (diff) | |
download | timeline-0ec1a8c7d46b185e68906a04dbe9abe9a4d4ae52.tar.gz timeline-0ec1a8c7d46b185e68906a04dbe9abe9a4d4ae52.tar.bz2 timeline-0ec1a8c7d46b185e68906a04dbe9abe9a4d4ae52.zip |
Migrate front-end to npm.
m--------- | Timeline/ClientApp | 0 | ||||
-rw-r--r-- | Timeline/Timeline.csproj | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Timeline/ClientApp b/Timeline/ClientApp -Subproject a887149849c6ba92aa9d9487e889f5c7346e19c +Subproject 50ef0844deb464ecfa567ce3a3d8069d6f5a4a0 diff --git a/Timeline/Timeline.csproj b/Timeline/Timeline.csproj index badafd33..05683ee0 100644 --- a/Timeline/Timeline.csproj +++ b/Timeline/Timeline.csproj @@ -57,8 +57,8 @@ <Target Name="PublishRunWebpack" AfterTargets="ComputeFilesToPublish">
<!-- As part of publishing, ensure the JS resources are freshly built in production mode -->
- <Exec WorkingDirectory="$(SpaRoot)" Command="yarn" />
- <Exec WorkingDirectory="$(SpaRoot)" Command="yarn run build" />
+ <Exec WorkingDirectory="$(SpaRoot)" Command="npm install" />
+ <Exec WorkingDirectory="$(SpaRoot)" Command="npm run build" />
<!-- Include the newly-built files in the publish output -->
<ItemGroup>
|