From c4a66a0e8a2546768baa073a07089202a9587b4a Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Mon, 1 Nov 2021 20:07:20 -0700 Subject: [PATCH] Updated docs [skip ci] --- README.md | 6 +++--- building-release.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cbd7f07..b598f98 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ You know how handy that 'Visual Studio Developer Command Prompt' is on your loca ```yml - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.0.3 + uses: microsoft/setup-msbuild@v1.1 ``` ## Specifying specific versions of Visual Studio @@ -15,7 +15,7 @@ You may have a situation where your Actions runner has multiple versions of Visu ```yml - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.0.3 + uses: microsoft/setup-msbuild@v1.1 with: vs-version: '[16.4,16.5)' ``` @@ -27,7 +27,7 @@ This makes use of the vswhere tool which is a tool delivered by Microsoft to hel ```yml - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.0.3 + uses: microsoft/setup-msbuild@v1.1 with: vswhere-path: 'C:\path\to\your\tools\' ``` diff --git a/building-release.md b/building-release.md index 7ea641f..1a1f44e 100644 --- a/building-release.md +++ b/building-release.md @@ -7,7 +7,7 @@ This is a quick document to walk through the process of building and releasing. - Build the branch/package - `npm install` - `npm run build` - - `npm run package` + - `npm run pack` - Prune the dependencies to only production - `npm prune --production` - Uncomment `node_modules` in `.gitignore` **for this branch only**