mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2025-12-27 13:08:17 +00:00
Set Jest config file in package script Include module path Include tests in project folders Remove index module exports Hardcode configuration parameters Move parameter binding into main run function Use alias imports Run test sequentially Remove cleanup (async conflict) Revert Jest option Increase test timeout to 15 seconds
15 lines
746 B
JavaScript
15 lines
746 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.VersionType = void 0;
|
|
/** Indicates the type of change a particular version change represents */
|
|
var VersionType;
|
|
(function (VersionType) {
|
|
/** Indicates a major version change */
|
|
VersionType[VersionType["Major"] = 0] = "Major";
|
|
/** Indicates a minor version change */
|
|
VersionType[VersionType["Minor"] = 1] = "Minor";
|
|
/** Indicates a patch version change */
|
|
VersionType[VersionType["Patch"] = 2] = "Patch";
|
|
/** Indicates no change--generally this means that the current commit is already tagged with a version */
|
|
VersionType[VersionType["None"] = 3] = "None";
|
|
})(VersionType = exports.VersionType || (exports.VersionType = {}));
|