chore(package): re-init package with commitizen and standard-release

This commit is contained in:
Pavel Pertsev
2018-05-16 12:54:46 +03:00
parent cb4e7a5643
commit eaf2328575
10640 changed files with 609660 additions and 117 deletions

15
node_modules/commitizen/dist/git/add.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.addPath = addPath;
/**
* Synchronously adds a path to git staging
*/
function addPath(sh, repoPath) {
sh.cd(repoPath);
sh.exec('git add .');
}

55
node_modules/commitizen/dist/git/commit.js generated vendored Normal file
View File

@@ -0,0 +1,55 @@
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.commit = undefined;
var _os = require('os');
var _os2 = _interopRequireDefault(_os);
var _child_process = require('child_process');
var _dedent = require('dedent');
var _dedent2 = _interopRequireDefault(_dedent);
var _util = require('../common/util');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
exports.commit = commit;
/**
* Asynchronously git commit at a given path with a message
*/
function commit(sh, repoPath, message, options, done) {
var called = false;
var args = ['commit', '-m', (0, _dedent2.default)(message)].concat(_toConsumableArray(options.args || []));
var child = (0, _child_process.spawn)('git', args, {
cwd: repoPath,
stdio: options.quiet ? 'ignore' : 'inherit'
});
child.on('error', function (err) {
if (called) return;
called = true;
done(err);
});
child.on('exit', function (code, signal) {
if (called) return;
called = true;
if (code) {
done(Object.assign(new Error('git exited with error code ' + code), { code: code, signal: signal }));
} else {
done(null);
}
});
}

15
node_modules/commitizen/dist/git/init.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.init = init;
/**
* Synchronously creates a new git repo at a path
*/
function init(sh, repoPath) {
sh.cd(repoPath);
sh.exec('git init');
}

26
node_modules/commitizen/dist/git/log.js generated vendored Normal file
View File

@@ -0,0 +1,26 @@
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.log = undefined;
var _child_process = require('child_process');
exports.log = log;
/**
* Asynchronously gets the git log output
*/
function log(repoPath, done) {
(0, _child_process.exec)('git log', {
maxBuffer: Infinity,
cwd: repoPath
}, function (error, stdout, stderr) {
if (error) {
throw error;
}
done(stdout);
});
}