mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-03-13 06:52:18 +08:00
* Add missing API switch for GHES (#200) * Vidya reddy/prettier code (#203) * switch none deployment strategy to basic (#204) * switch none deployment strategy to basic * update readme * update deployment strategy fallthrough logic * comment fixed * add disclaimer for basic strategy only supporting deploy action * Hari/beautify logs (#206) * Logging changes for deploy * Logging Changes with group * format check changes * Add ncc build to build script (#208) Co-authored-by: Vidya Reddy <vidyareddy@microsoft.com> * Logging Changes for Promote, Reject actions (#207) * add clean function (#211) * Add node modules and compiled JavaScript from main Co-authored-by: nv35 <76777923+nv35@users.noreply.github.com> Co-authored-by: Vidya <59590642+Vidya2606@users.noreply.github.com> Co-authored-by: David Gamero <david340804@gmail.com> Co-authored-by: Hariharan Subramanian <105889062+hsubramanianaks@users.noreply.github.com> Co-authored-by: Vidya Reddy <vidyareddy@microsoft.com> Co-authored-by: Oliver King <oking3@uncc.edu>
33 lines
851 B
JSON
33 lines
851 B
JSON
{
|
|
"name": "k8s-deploy-action",
|
|
"version": "0.0.0",
|
|
"author": "Deepak Sattiraju",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "ncc build src/run.ts -o lib",
|
|
"test": "jest",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check ."
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/exec": "^1.0.0",
|
|
"@actions/io": "^1.0.0",
|
|
"@actions/tool-cache": "1.1.2",
|
|
"@octokit/core": "^3.5.1",
|
|
"@octokit/plugin-retry": "^3.0.9",
|
|
"@types/minipass": "^3.1.2",
|
|
"js-yaml": "3.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.0",
|
|
"@types/js-yaml": "^3.12.7",
|
|
"@types/node": "^12.20.41",
|
|
"@vercel/ncc": "^0.34.0",
|
|
"jest": "^26.0.0",
|
|
"prettier": "2.7.1",
|
|
"ts-jest": "^26.0.0",
|
|
"typescript": "3.9.5"
|
|
}
|
|
}
|