msvc-dev-cmd v1.1.0

This commit is contained in:
ilammy
2020-03-19 08:49:12 +02:00
5 changed files with 14 additions and 6 deletions
+1 -1
View File
@@ -34,4 +34,4 @@ jobs:
- name: Check out source code - name: Check out source code
uses: actions/checkout@v1 uses: actions/checkout@v1
- run: npm install - run: npm install
- run: npm audit - run: npm audit --audit-level=moderate
+7
View File
@@ -23,3 +23,10 @@ jobs:
run: | run: |
cl.exe hello.c cl.exe hello.c
hello.exe hello.exe
audit:
name: npm audit
runs-on: windows-latest
steps:
- name: Check out source code
uses: actions/checkout@v1
- run: npm audit --audit-level=moderate
+1
View File
@@ -14,6 +14,7 @@ const InterestingVariables = [
'LIBPATH', 'LIBPATH',
'Path', 'Path',
'Platform', 'Platform',
'VisualStudioVersion',
/^VCTools/, /^VCTools/,
/^VSCMD_/, /^VSCMD_/,
/^WindowsSDK/i, /^WindowsSDK/i,
+4 -4
View File
@@ -1,6 +1,6 @@
{ {
"name": "msvc-dev-cmd", "name": "msvc-dev-cmd",
"version": "1.0.0", "version": "1.1.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
@@ -30,9 +30,9 @@
} }
}, },
"acorn": { "acorn": {
"version": "7.1.0", "version": "7.1.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz",
"integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==", "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==",
"dev": true "dev": true
}, },
"acorn-jsx": { "acorn-jsx": {
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "msvc-dev-cmd", "name": "msvc-dev-cmd",
"version": "1.0.1", "version": "1.1.0",
"description": "GitHub Action to setup Developer Command Prompt for Microsoft Visual C++", "description": "GitHub Action to setup Developer Command Prompt for Microsoft Visual C++",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {