mirror of
https://github.com/ilammy/msvc-dev-cmd.git
synced 2026-09-07 06:07:19 +08:00
Initial action stub
Now that I know how to write some simple action, let's make a stub more complete. For example, I already know what inputs I would like to handle for this action.
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "msvc-dev-cmd",
|
||||
"version": "1.0.0",
|
||||
"description": "GitHub Action to setup Developer Command Prompt for Microsoft Visual C++",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"lint": "eslint index.js",
|
||||
"test": "eslint index.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ilammy/msvc-dev-cmd.git"
|
||||
},
|
||||
"keywords": [
|
||||
"GitHub",
|
||||
"Actions",
|
||||
"Developer Command Prompt",
|
||||
"Microsoft Visual Studio",
|
||||
"Microsoft Visual C++",
|
||||
"Visual Studio",
|
||||
"Visual C++",
|
||||
"vcvarsall.bat"
|
||||
],
|
||||
"author": "ilammy <me@ilammy.net>",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ilammy/msvc-dev-cmd/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ilammy/msvc-dev-cmd#readme",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^6.5.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user