Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@commitlint/top-level

Package Overview
Dependencies
Maintainers
4
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@commitlint/top-level - npm Package Compare versions

Comparing version 8.0.0 to 8.1.0

lib/index.d.ts

8

CHANGELOG.md

@@ -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 @@

99

lib/index.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc