mirror of
https://github.com/actions/labeler.git
synced 2025-12-10 11:41:56 +00:00
Upgrade Typescript to 4.3
Also necessitated upgrading ts-jest to 27.0 and jest to 26.0
This commit is contained in:
4
.licenses/npm/@actions/core.dep.yml
generated
4
.licenses/npm/@actions/core.dep.yml
generated
@@ -2,8 +2,8 @@
|
|||||||
name: "@actions/core"
|
name: "@actions/core"
|
||||||
version: 1.2.4
|
version: 1.2.4
|
||||||
type: npm
|
type: npm
|
||||||
summary: Actions core lib
|
summary:
|
||||||
homepage: https://github.com/actions/toolkit/tree/master/packages/core
|
homepage:
|
||||||
license: mit
|
license: mit
|
||||||
licenses:
|
licenses:
|
||||||
- sources: Auto-generated MIT license text
|
- sources: Auto-generated MIT license text
|
||||||
|
|||||||
4
.licenses/npm/js-yaml.dep.yml
generated
4
.licenses/npm/js-yaml.dep.yml
generated
@@ -2,8 +2,8 @@
|
|||||||
name: js-yaml
|
name: js-yaml
|
||||||
version: 3.13.1
|
version: 3.13.1
|
||||||
type: npm
|
type: npm
|
||||||
summary: YAML 1.2 parser and serializer
|
summary:
|
||||||
homepage: https://github.com/nodeca/js-yaml
|
homepage:
|
||||||
license: mit
|
license: mit
|
||||||
licenses:
|
licenses:
|
||||||
- sources: LICENSE
|
- sources: LICENSE
|
||||||
|
|||||||
33
dist/index.js
vendored
33
dist/index.js
vendored
@@ -19823,6 +19823,25 @@ module.exports = readShebang;
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
|
if (k2 === undefined) k2 = k;
|
||||||
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||||
|
}) : (function(o, m, k, k2) {
|
||||||
|
if (k2 === undefined) k2 = k;
|
||||||
|
o[k2] = m[k];
|
||||||
|
}));
|
||||||
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||||
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||||
|
}) : function(o, v) {
|
||||||
|
o["default"] = v;
|
||||||
|
});
|
||||||
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
|
if (mod && mod.__esModule) return mod;
|
||||||
|
var result = {};
|
||||||
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||||
|
__setModuleDefault(result, mod);
|
||||||
|
return result;
|
||||||
|
};
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||||||
@@ -19832,14 +19851,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
|
||||||
if (mod && mod.__esModule) return mod;
|
|
||||||
var result = {};
|
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
||||||
result["default"] = mod;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
exports.checkGlobs = exports.run = void 0;
|
||||||
const core = __importStar(__webpack_require__(186));
|
const core = __importStar(__webpack_require__(186));
|
||||||
const github = __importStar(__webpack_require__(438));
|
const github = __importStar(__webpack_require__(438));
|
||||||
const yaml = __importStar(__webpack_require__(917));
|
const yaml = __importStar(__webpack_require__(917));
|
||||||
@@ -29434,6 +29447,7 @@ module.exports = Octokit;
|
|||||||
// ignored, since we can never get coverage for them.
|
// ignored, since we can never get coverage for them.
|
||||||
var assert = __webpack_require__(357)
|
var assert = __webpack_require__(357)
|
||||||
var signals = __webpack_require__(710)
|
var signals = __webpack_require__(710)
|
||||||
|
var isWin = /^win/i.test(process.platform)
|
||||||
|
|
||||||
var EE = __webpack_require__(614)
|
var EE = __webpack_require__(614)
|
||||||
/* istanbul ignore if */
|
/* istanbul ignore if */
|
||||||
@@ -29523,6 +29537,11 @@ signals.forEach(function (sig) {
|
|||||||
/* istanbul ignore next */
|
/* istanbul ignore next */
|
||||||
emit('afterexit', null, sig)
|
emit('afterexit', null, sig)
|
||||||
/* istanbul ignore next */
|
/* istanbul ignore next */
|
||||||
|
if (isWin && sig === 'SIGHUP') {
|
||||||
|
// "SIGHUP" throws an `ENOSYS` error on Windows,
|
||||||
|
// so use a supported signal instead
|
||||||
|
sig = 'SIGINT'
|
||||||
|
}
|
||||||
process.kill(process.pid, sig)
|
process.kill(process.pid, sig)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
19666
package-lock.json
generated
19666
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -29,16 +29,16 @@
|
|||||||
"semver": "^6.1.1"
|
"semver": "^6.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^24.0.13",
|
"@types/jest": "^26.0.23",
|
||||||
"@types/node": "^12.0.4",
|
"@types/node": "^12.0.4",
|
||||||
"@types/semver": "^6.0.0",
|
"@types/semver": "^6.0.0",
|
||||||
"@types/minimatch": "^3.0.0",
|
"@types/minimatch": "^3.0.0",
|
||||||
"@types/js-yaml": "^3.12.1",
|
"@types/js-yaml": "^3.12.1",
|
||||||
"@vercel/ncc": "^0.23.0",
|
"@vercel/ncc": "^0.23.0",
|
||||||
"jest": "^24.8.0",
|
"jest": "^27.0.4",
|
||||||
"jest-circus": "^24.7.1",
|
"jest-circus": "^24.7.1",
|
||||||
"prettier": "^2.3.0",
|
"prettier": "^2.3.0",
|
||||||
"ts-jest": "^24.0.2",
|
"ts-jest": "^27.0.2",
|
||||||
"typescript": "^3.5.1"
|
"typescript": "^4.3.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user