docs(changelog test): i test how to automate ChangeLog
This commit is contained in:
194
node_modules/commitizen/dist/git/log.js
generated
vendored
Normal file
194
node_modules/commitizen/dist/git/log.js
generated
vendored
Normal file
@@ -0,0 +1,194 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.log = log;
|
||||
var _child_process = require("child_process");
|
||||
function cov_uo383o3rs() {
|
||||
var path = "/home/runner/work/cz-cli/cz-cli/src/git/log.js";
|
||||
var hash = "af9ef92940eb1c905d0a9cd466704f086cbe48fa";
|
||||
var global = new Function("return this")();
|
||||
var gcv = "__coverage__";
|
||||
var coverageData = {
|
||||
path: "/home/runner/work/cz-cli/cz-cli/src/git/log.js",
|
||||
statementMap: {
|
||||
"0": {
|
||||
start: {
|
||||
line: 9,
|
||||
column: 2
|
||||
},
|
||||
end: {
|
||||
line: 17,
|
||||
column: 5
|
||||
}
|
||||
},
|
||||
"1": {
|
||||
start: {
|
||||
line: 13,
|
||||
column: 4
|
||||
},
|
||||
end: {
|
||||
line: 15,
|
||||
column: 5
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
start: {
|
||||
line: 14,
|
||||
column: 6
|
||||
},
|
||||
end: {
|
||||
line: 14,
|
||||
column: 18
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
start: {
|
||||
line: 16,
|
||||
column: 4
|
||||
},
|
||||
end: {
|
||||
line: 16,
|
||||
column: 17
|
||||
}
|
||||
}
|
||||
},
|
||||
fnMap: {
|
||||
"0": {
|
||||
name: "log",
|
||||
decl: {
|
||||
start: {
|
||||
line: 8,
|
||||
column: 9
|
||||
},
|
||||
end: {
|
||||
line: 8,
|
||||
column: 12
|
||||
}
|
||||
},
|
||||
loc: {
|
||||
start: {
|
||||
line: 8,
|
||||
column: 30
|
||||
},
|
||||
end: {
|
||||
line: 18,
|
||||
column: 1
|
||||
}
|
||||
},
|
||||
line: 8
|
||||
},
|
||||
"1": {
|
||||
name: "(anonymous_1)",
|
||||
decl: {
|
||||
start: {
|
||||
line: 12,
|
||||
column: 5
|
||||
},
|
||||
end: {
|
||||
line: 12,
|
||||
column: 6
|
||||
}
|
||||
},
|
||||
loc: {
|
||||
start: {
|
||||
line: 12,
|
||||
column: 38
|
||||
},
|
||||
end: {
|
||||
line: 17,
|
||||
column: 3
|
||||
}
|
||||
},
|
||||
line: 12
|
||||
}
|
||||
},
|
||||
branchMap: {
|
||||
"0": {
|
||||
loc: {
|
||||
start: {
|
||||
line: 13,
|
||||
column: 4
|
||||
},
|
||||
end: {
|
||||
line: 15,
|
||||
column: 5
|
||||
}
|
||||
},
|
||||
type: "if",
|
||||
locations: [{
|
||||
start: {
|
||||
line: 13,
|
||||
column: 4
|
||||
},
|
||||
end: {
|
||||
line: 15,
|
||||
column: 5
|
||||
}
|
||||
}, {
|
||||
start: {
|
||||
line: undefined,
|
||||
column: undefined
|
||||
},
|
||||
end: {
|
||||
line: undefined,
|
||||
column: undefined
|
||||
}
|
||||
}],
|
||||
line: 13
|
||||
}
|
||||
},
|
||||
s: {
|
||||
"0": 0,
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
},
|
||||
f: {
|
||||
"0": 0,
|
||||
"1": 0
|
||||
},
|
||||
b: {
|
||||
"0": [0, 0]
|
||||
},
|
||||
_coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
|
||||
hash: "af9ef92940eb1c905d0a9cd466704f086cbe48fa"
|
||||
};
|
||||
var coverage = global[gcv] || (global[gcv] = {});
|
||||
if (!coverage[path] || coverage[path].hash !== hash) {
|
||||
coverage[path] = coverageData;
|
||||
}
|
||||
var actualCoverage = coverage[path];
|
||||
{
|
||||
// @ts-ignore
|
||||
cov_uo383o3rs = function () {
|
||||
return actualCoverage;
|
||||
};
|
||||
}
|
||||
return actualCoverage;
|
||||
}
|
||||
cov_uo383o3rs();
|
||||
/**
|
||||
* Asynchronously gets the git log output
|
||||
*/
|
||||
function log(repoPath, done) {
|
||||
cov_uo383o3rs().f[0]++;
|
||||
cov_uo383o3rs().s[0]++;
|
||||
(0, _child_process.exec)('git log', {
|
||||
maxBuffer: Infinity,
|
||||
cwd: repoPath
|
||||
}, function (error, stdout, stderr) {
|
||||
cov_uo383o3rs().f[1]++;
|
||||
cov_uo383o3rs().s[1]++;
|
||||
if (error) {
|
||||
cov_uo383o3rs().b[0][0]++;
|
||||
cov_uo383o3rs().s[2]++;
|
||||
throw error;
|
||||
} else {
|
||||
cov_uo383o3rs().b[0][1]++;
|
||||
}
|
||||
cov_uo383o3rs().s[3]++;
|
||||
done(stdout);
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user