Compare View

switch
from
...
to
 
Commits (2)

Changes

Showing 2 changed files Inline Diff

1 "use strict"; 1 "use strict";
2 2
3 const simpleGit = require('simple-git');
4
3 const simpleGit = require('simple-git'); 5 const matrix = {};
6
7 // get active git version
8 simpleGit(process.cwd()).raw(
9 ['describe'],
10 function(err, result) {
11 if (!err) {
12 matrix.version_active = result;
13 }
14 }
15 )
16
4 17 module.exports = matrix;
5 const matrix = {}; 18
1 { 1 {
2 "name": "komodo-sdk", 2 "name": "komodo-sdk",
3 "version": "1.7.2", 3 "version": "1.7.3",
4 "description": "SDK for Komodo", 4 "description": "SDK for Komodo",
5 "main": "index.js", 5 "main": "index.js",
6 "scripts": { 6 "scripts": {
7 "test": "mocha", 7 "test": "mocha",
8 "postversion": "git push && git push --tags" 8 "postversion": "git push && git push --tags"
9 }, 9 },
10 "repository": { 10 "repository": {
11 "type": "git", 11 "type": "git",
12 "url": "git@gitlab.kodesumber.com:komodo/komodo-sdk.git" 12 "url": "git@gitlab.kodesumber.com:komodo/komodo-sdk.git"
13 }, 13 },
14 "keywords": [ 14 "keywords": [
15 "ppob", 15 "ppob",
16 "payment", 16 "payment",
17 "komodo" 17 "komodo"
18 ], 18 ],
19 "author": "Adhidarma Hadiwinoto <gua@adhisimon.org>", 19 "author": "Adhidarma Hadiwinoto <gua@adhisimon.org>",
20 "license": "ISC", 20 "license": "ISC",
21 "dependencies": { 21 "dependencies": {
22 "basic-auth": "^2.0.0", 22 "basic-auth": "^2.0.0",
23 "lru-cache": "^4.1.1", 23 "lru-cache": "^4.1.1",
24 "moment": "^2.19.1", 24 "moment": "^2.19.1",
25 "request": "^2.81.0", 25 "request": "^2.81.0",
26 "simple-git": "^1.80.1",
26 "simple-git": "^1.80.1", 27 "strftime": "^0.10.0",
27 "strftime": "^0.10.0", 28 "winston": "^2.3.1",
28 "winston": "^2.3.1", 29 "winston-circular-buffer": "^1.0.0",
29 "winston-circular-buffer": "^1.0.0", 30 "winston-daily-rotate-file": "^1.4.6"
30 "winston-daily-rotate-file": "^1.4.6" 31 }
31 } 32 }
32 } 33