@commitlint/top-level
Advanced tools
Comparing version 8.0.0 to 8.1.0
@@ -6,2 +6,10 @@ # Change Log | ||
# [8.1.0](https://github.com/conventional-changelog/commitlint/compare/v8.0.0...v8.1.0) (2019-07-15) | ||
**Note:** Version bump only for package @commitlint/top-level | ||
# [7.6.0](https://github.com/conventional-changelog/commitlint/compare/v7.5.2...v7.6.0) (2019-05-06) | ||
@@ -8,0 +16,0 @@ |
@@ -1,42 +0,63 @@ | ||
'use strict'; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
var _path = require('path'); | ||
var _path2 = _interopRequireDefault(_path); | ||
var _findUp = require('find-up'); | ||
var _findUp2 = _interopRequireDefault(_findUp); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
exports.default = toplevel; | ||
// Find the next git root | ||
// (start: string) => Promise<string | null> | ||
"use strict"; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
return new (P || (P = Promise))(function (resolve, reject) { | ||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
}); | ||
}; | ||
var __generator = (this && this.__generator) || function (thisArg, body) { | ||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; | ||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; | ||
function verb(n) { return function (v) { return step([n, v]); }; } | ||
function step(op) { | ||
if (f) throw new TypeError("Generator is already executing."); | ||
while (_) try { | ||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; | ||
if (y = 0, t) op = [op[0] & 2, t.value]; | ||
switch (op[0]) { | ||
case 0: case 1: t = op; break; | ||
case 4: _.label++; return { value: op[1], done: false }; | ||
case 5: _.label++; y = op[1]; op = [0]; continue; | ||
case 7: op = _.ops.pop(); _.trys.pop(); continue; | ||
default: | ||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } | ||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } | ||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } | ||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } | ||
if (t[2]) _.ops.pop(); | ||
_.trys.pop(); continue; | ||
} | ||
op = body.call(thisArg, _); | ||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } | ||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; | ||
} | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
exports.__esModule = true; | ||
var path_1 = __importDefault(require("path")); | ||
var find_up_1 = __importDefault(require("find-up")); | ||
exports["default"] = toplevel; | ||
/** | ||
* Find the next git root | ||
*/ | ||
function toplevel(cwd) { | ||
return new Promise(function ($return, $error) { | ||
var found; | ||
return Promise.resolve((0, _findUp2.default)('.git', { cwd })).then(function ($await_1) { | ||
try { | ||
found = $await_1; | ||
if (typeof found !== 'string') { | ||
return $return(found); | ||
} | ||
return $return(_path2.default.join(found, '..')); | ||
} catch ($boundEx) { | ||
return $error($boundEx); | ||
} | ||
}.bind(this), $error); | ||
}.bind(this)); | ||
return __awaiter(this, void 0, void 0, function () { | ||
var found; | ||
return __generator(this, function (_a) { | ||
switch (_a.label) { | ||
case 0: return [4 /*yield*/, find_up_1["default"]('.git', { cwd: cwd, type: 'directory' })]; | ||
case 1: | ||
found = _a.sent(); | ||
if (typeof found !== 'string') { | ||
return [2 /*return*/, found]; | ||
} | ||
return [2 /*return*/, path_1["default"].join(found, '..')]; | ||
} | ||
}); | ||
}); | ||
} | ||
module.exports = exports['default']; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@commitlint/top-level", | ||
"version": "8.0.0", | ||
"version": "8.1.0", | ||
"description": "Lint your commit messages", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"files": [ | ||
@@ -10,7 +11,4 @@ "lib/" | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps", | ||
"deps": "dep-check", | ||
"pkg": "pkg-check", | ||
"start": "yarn watch", | ||
"watch": "babel src --out-dir lib --watch --source-maps" | ||
"pkg": "pkg-check" | ||
}, | ||
@@ -45,12 +43,10 @@ "babel": { | ||
"devDependencies": { | ||
"@commitlint/utils": "^8.0.0", | ||
"babel-cli": "6.26.0", | ||
"babel-preset-commitlint": "^8.0.0", | ||
"babel-register": "6.26.0", | ||
"cross-env": "5.1.1" | ||
"@commitlint/utils": "^8.1.0", | ||
"@types/find-up": "2.1.1", | ||
"@types/node": "12.0.8" | ||
}, | ||
"dependencies": { | ||
"find-up": "^2.1.0" | ||
"find-up": "^4.0.0" | ||
}, | ||
"gitHead": "29d1cee10ee7734a85d97ef039c4ce2da633628c" | ||
"gitHead": "c17420d67adafdf37f68d6861d29a0e85a4a3bd7" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9416
3
7
73
+ Addedfind-up@4.1.0(transitive)
+ Addedlocate-path@5.0.0(transitive)
+ Addedp-limit@2.3.0(transitive)
+ Addedp-locate@4.1.0(transitive)
+ Addedp-try@2.2.0(transitive)
+ Addedpath-exists@4.0.0(transitive)
- Removedfind-up@2.1.0(transitive)
- Removedlocate-path@2.0.0(transitive)
- Removedp-limit@1.3.0(transitive)
- Removedp-locate@2.0.0(transitive)
- Removedp-try@1.0.0(transitive)
- Removedpath-exists@3.0.0(transitive)
Updatedfind-up@^4.0.0