Skip to content

Commit

Permalink
KSM-564 Added Node16 and Node20_1 to task.json (#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
idimov-keeper authored Oct 23, 2024
1 parent fab6c47 commit 3a6bb13
Show file tree
Hide file tree
Showing 3 changed files with 230 additions and 39 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
{
"name": "keeper-secrets-manager",
"version": "1.0.8",
"version": "1.0.9",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc index.ts",
"run": "tsc index.ts && node index.js",
"test": "tsc && mocha tests/_suite.js",
"test": "tsc tests/_suite.ts tests/success.ts && mocha tests/_suite.js",
"quicktest": "ts-node index.ts"
},
"author": "",
"license": "MIT",
"dependencies": {
"@keeper-security/secrets-manager-core": "^16.6.2",
"azure-pipelines-task-lib": "^4.15.0"
"@keeper-security/secrets-manager-core": "^16.6.3",
"azure-pipelines-task-lib": "^4.17.3"
},
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^14.14.37",
"@types/mocha": "^10.0.9",
"@types/node": "^20.3.1",
"dotenv": "^16.4.5",
"mocha": "^10.7.3",
"typescript": "^4.2.4",
"dotenv": "^10.0.0"
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"version": {
"Major": 1,
"Minor": 0,
"Patch": 8
"Patch": 9
},
"instanceNameFormat": "KeeperSecretsManager",
"inputs": [
Expand All @@ -36,9 +36,16 @@

}
],
"minimumAgentVersion": "2.144.0",
"execution": {
"Node10": {
"target": "index.js"
},
"Node16": {
"target": "index.js"
},
"Node20_1": {
"target": "index.js"
}
}
}

0 comments on commit 3a6bb13

Please sign in to comment.