Skip to content

Commit ac3ff45

Browse files
author
Maxim Zaytsev
authored
Add dev-dependencies-constants and update mocha version (#349)
* Update versions * Add dev-dependencies-constants * Update task versions
1 parent cde7974 commit ac3ff45

File tree

15 files changed

+770
-4856
lines changed

15 files changed

+770
-4856
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Interested in contributing to the google-play-vsts-extension project? There are
1616

1717
**Linux**: Install [using package manager](https://nodejs.org/en/download/package-manager/)
1818

19-
From a terminal ensure at least node 5.4.1 and npm 3:
19+
From a terminal ensure at least node 10.0.0 and npm 5.6.0:
2020
```bash
2121
$ node -v && npm -v
22-
v6.9.1
23-
3.10.8
22+
v10.24.1
23+
6.14.12
2424
```
2525

2626
## Build

Tasks/GooglePlayPromoteV2/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"version": {
1313
"Major": "3",
14-
"Minor": "206",
14+
"Minor": "207",
1515
"Patch": "0"
1616
},
1717
"minimumAgentVersion": "2.182.1",

Tasks/GooglePlayPromoteV2/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"version": {
1313
"Major": "3",
14-
"Minor": "206",
14+
"Minor": "207",
1515
"Patch": "0"
1616
},
1717
"minimumAgentVersion": "2.182.1",

Tasks/GooglePlayReleaseV4/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"demands": [],
1313
"version": {
1414
"Major": "4",
15-
"Minor": "206",
15+
"Minor": "207",
1616
"Patch": "0"
1717
},
1818
"minimumAgentVersion": "2.182.1",

Tasks/GooglePlayReleaseV4/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"demands": [],
1313
"version": {
1414
"Major": "4",
15-
"Minor": "206",
15+
"Minor": "207",
1616
"Patch": "0"
1717
},
1818
"minimumAgentVersion": "2.182.1",

Tasks/GooglePlayRolloutUpdateV3/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"version": {
1313
"Major": "2",
14-
"Minor": "206",
14+
"Minor": "207",
1515
"Patch": "0"
1616
},
1717
"minimumAgentVersion": "2.182.1",

Tasks/GooglePlayRolloutUpdateV3/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"version": {
1313
"Major": "2",
14-
"Minor": "206",
14+
"Minor": "207",
1515
"Patch": "0"
1616
},
1717
"minimumAgentVersion": "2.182.1",

Tasks/GooglePlayStatusUpdateV2/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"version": {
1313
"Major": "2",
14-
"Minor": "206",
14+
"Minor": "207",
1515
"Patch": "0"
1616
},
1717
"minimumAgentVersion": "2.182.1",

Tasks/GooglePlayStatusUpdateV2/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"version": {
1313
"Major": "2",
14-
"Minor": "206",
14+
"Minor": "207",
1515
"Patch": "0"
1616
},
1717
"minimumAgentVersion": "2.182.1",

dev-dependencies-constants.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/**
2+
* Common dev dependencies constants
3+
* @module dev-dependencies-constants
4+
*/
5+
6+
/** Target mocha version for running tests */
7+
exports.MOCHA_TARGET_VERSION = '6.2.3';
8+
/** Minimum supported typescript version */
9+
exports.TSC_MIN_VERSION = '3.6.3';
10+
/** Current typescript version */
11+
exports.TSC_CURRENT_VERSION = '4.0.2';
12+
/** Minimum supported node version */
13+
exports.NODE_MIN_VERSION = '10.0.0';
14+
/** Minimum supported npm version */
15+
exports.NPM_MIN_VERSION = '5.6.0';

0 commit comments

Comments
 (0)