Skip to content

Commit 002353c

Browse files
angular-robotjosephperrott
authored andcommitted
build: lock file maintenance (#2893)
See associated pull request for more information. PR Close #2893
1 parent ae6afbc commit 002353c

File tree

14 files changed

+1245
-1301
lines changed

14 files changed

+1245
-1301
lines changed

.github/local-actions/branch-manager/main.js

Lines changed: 41 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -35195,11 +35195,26 @@ var require_dist_node9 = __commonJS({
3519535195
var import_request15 = require_dist_node6();
3519635196
var import_graphql3 = require_dist_node7();
3519735197
var import_auth_token2 = require_dist_node8();
35198-
var VERSION13 = "5.2.1";
35198+
var VERSION13 = "5.2.2";
3519935199
var noop2 = () => {
3520035200
};
3520135201
var consoleWarn2 = console.warn.bind(console);
3520235202
var consoleError2 = console.error.bind(console);
35203+
function createLogger2(logger = {}) {
35204+
if (typeof logger.debug !== "function") {
35205+
logger.debug = noop2;
35206+
}
35207+
if (typeof logger.info !== "function") {
35208+
logger.info = noop2;
35209+
}
35210+
if (typeof logger.warn !== "function") {
35211+
logger.warn = consoleWarn2;
35212+
}
35213+
if (typeof logger.error !== "function") {
35214+
logger.error = consoleError2;
35215+
}
35216+
return logger;
35217+
}
3520335218
var userAgentTrail2 = `octokit-core.js/${VERSION13} ${(0, import_universal_user_agent9.getUserAgent)()}`;
3520435219
var _a;
3520535220
var Octokit3 = (_a = class {
@@ -35261,15 +35276,7 @@ var require_dist_node9 = __commonJS({
3526135276
}
3526235277
this.request = import_request15.request.defaults(requestDefaults);
3526335278
this.graphql = (0, import_graphql3.withCustomRequest)(this.request).defaults(requestDefaults);
35264-
this.log = Object.assign(
35265-
{
35266-
debug: noop2,
35267-
info: noop2,
35268-
warn: consoleWarn2,
35269-
error: consoleError2
35270-
},
35271-
options.log
35272-
);
35279+
this.log = createLogger2(options.log);
3527335280
this.hook = hook6;
3527435281
if (!options.authStrategy) {
3527535282
if (!options.auth) {
@@ -55821,7 +55828,7 @@ var inputTheme = {
5582155828
validationFailureMode: "keep"
5582255829
};
5582355830
var esm_default5 = createPrompt((config2, done) => {
55824-
const { required, validate = () => true } = config2;
55831+
const { required, validate = () => true, prefill = "tab" } = config2;
5582555832
const theme = makeTheme(inputTheme, config2.theme);
5582655833
const [status, setStatus] = useState("idle");
5582755834
const [defaultValue = "", setDefaultValue] = useState(config2.default);
@@ -55861,6 +55868,12 @@ var esm_default5 = createPrompt((config2, done) => {
5586155868
setError(void 0);
5586255869
}
5586355870
});
55871+
useEffect((rl) => {
55872+
if (prefill === "editable" && defaultValue) {
55873+
rl.write(defaultValue);
55874+
setValue(defaultValue);
55875+
}
55876+
}, []);
5586455877
const message = theme.style.message(config2.message, status);
5586555878
let formattedValue = value;
5586655879
if (typeof config2.transformer === "function") {
@@ -60327,13 +60340,28 @@ var createTokenAuth = function createTokenAuth2(token2) {
6032760340
};
6032860341

6032960342
//
60330-
var VERSION4 = "7.0.2";
60343+
var VERSION4 = "7.0.3";
6033160344

6033260345
//
6033360346
var noop = () => {
6033460347
};
6033560348
var consoleWarn = console.warn.bind(console);
6033660349
var consoleError = console.error.bind(console);
60350+
function createLogger(logger = {}) {
60351+
if (typeof logger.debug !== "function") {
60352+
logger.debug = noop;
60353+
}
60354+
if (typeof logger.info !== "function") {
60355+
logger.info = noop;
60356+
}
60357+
if (typeof logger.warn !== "function") {
60358+
logger.warn = consoleWarn;
60359+
}
60360+
if (typeof logger.error !== "function") {
60361+
logger.error = consoleError;
60362+
}
60363+
return logger;
60364+
}
6033760365
var userAgentTrail = `octokit-core.js/${VERSION4} ${getUserAgent()}`;
6033860366
var Octokit = class {
6033960367
static defaults(defaults2) {
@@ -60392,15 +60420,7 @@ var Octokit = class {
6039260420
}
6039360421
this.request = request.defaults(requestDefaults);
6039460422
this.graphql = withCustomRequest(this.request).defaults(requestDefaults);
60395-
this.log = Object.assign(
60396-
{
60397-
debug: noop,
60398-
info: noop,
60399-
warn: consoleWarn,
60400-
error: consoleError
60401-
},
60402-
options.log
60403-
);
60423+
this.log = createLogger(options.log);
6040460424
this.hook = hook6;
6040560425
if (!options.authStrategy) {
6040660426
if (!options.auth) {

.github/local-actions/labels-sync/main.js

Lines changed: 34 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -35173,11 +35173,26 @@ var require_dist_node9 = __commonJS({
3517335173
var import_request15 = require_dist_node6();
3517435174
var import_graphql2 = require_dist_node7();
3517535175
var import_auth_token2 = require_dist_node8();
35176-
var VERSION13 = "5.2.1";
35176+
var VERSION13 = "5.2.2";
3517735177
var noop2 = () => {
3517835178
};
3517935179
var consoleWarn2 = console.warn.bind(console);
3518035180
var consoleError2 = console.error.bind(console);
35181+
function createLogger2(logger = {}) {
35182+
if (typeof logger.debug !== "function") {
35183+
logger.debug = noop2;
35184+
}
35185+
if (typeof logger.info !== "function") {
35186+
logger.info = noop2;
35187+
}
35188+
if (typeof logger.warn !== "function") {
35189+
logger.warn = consoleWarn2;
35190+
}
35191+
if (typeof logger.error !== "function") {
35192+
logger.error = consoleError2;
35193+
}
35194+
return logger;
35195+
}
3518135196
var userAgentTrail2 = `octokit-core.js/${VERSION13} ${(0, import_universal_user_agent9.getUserAgent)()}`;
3518235197
var _a;
3518335198
var Octokit3 = (_a = class {
@@ -35239,15 +35254,7 @@ var require_dist_node9 = __commonJS({
3523935254
}
3524035255
this.request = import_request15.request.defaults(requestDefaults);
3524135256
this.graphql = (0, import_graphql2.withCustomRequest)(this.request).defaults(requestDefaults);
35242-
this.log = Object.assign(
35243-
{
35244-
debug: noop2,
35245-
info: noop2,
35246-
warn: consoleWarn2,
35247-
error: consoleError2
35248-
},
35249-
options.log
35250-
);
35257+
this.log = createLogger2(options.log);
3525135258
this.hook = hook6;
3525235259
if (!options.authStrategy) {
3525335260
if (!options.auth) {
@@ -38837,13 +38844,28 @@ var createTokenAuth = function createTokenAuth2(token) {
3883738844
};
3883838845

3883938846
//
38840-
var VERSION4 = "7.0.2";
38847+
var VERSION4 = "7.0.3";
3884138848

3884238849
//
3884338850
var noop = () => {
3884438851
};
3884538852
var consoleWarn = console.warn.bind(console);
3884638853
var consoleError = console.error.bind(console);
38854+
function createLogger(logger = {}) {
38855+
if (typeof logger.debug !== "function") {
38856+
logger.debug = noop;
38857+
}
38858+
if (typeof logger.info !== "function") {
38859+
logger.info = noop;
38860+
}
38861+
if (typeof logger.warn !== "function") {
38862+
logger.warn = consoleWarn;
38863+
}
38864+
if (typeof logger.error !== "function") {
38865+
logger.error = consoleError;
38866+
}
38867+
return logger;
38868+
}
3884738869
var userAgentTrail = `octokit-core.js/${VERSION4} ${getUserAgent()}`;
3884838870
var Octokit = class {
3884938871
static defaults(defaults) {
@@ -38902,15 +38924,7 @@ var Octokit = class {
3890238924
}
3890338925
this.request = request.defaults(requestDefaults);
3890438926
this.graphql = withCustomRequest(this.request).defaults(requestDefaults);
38905-
this.log = Object.assign(
38906-
{
38907-
debug: noop,
38908-
info: noop,
38909-
warn: consoleWarn,
38910-
error: consoleError
38911-
},
38912-
options.log
38913-
);
38927+
this.log = createLogger(options.log);
3891438928
this.hook = hook6;
3891538929
if (!options.authStrategy) {
3891638930
if (!options.auth) {

.github/local-actions/lock-closed/main.js

Lines changed: 34 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -35173,11 +35173,26 @@ var require_dist_node9 = __commonJS({
3517335173
var import_request15 = require_dist_node6();
3517435174
var import_graphql2 = require_dist_node7();
3517535175
var import_auth_token2 = require_dist_node8();
35176-
var VERSION13 = "5.2.1";
35176+
var VERSION13 = "5.2.2";
3517735177
var noop2 = () => {
3517835178
};
3517935179
var consoleWarn2 = console.warn.bind(console);
3518035180
var consoleError2 = console.error.bind(console);
35181+
function createLogger2(logger = {}) {
35182+
if (typeof logger.debug !== "function") {
35183+
logger.debug = noop2;
35184+
}
35185+
if (typeof logger.info !== "function") {
35186+
logger.info = noop2;
35187+
}
35188+
if (typeof logger.warn !== "function") {
35189+
logger.warn = consoleWarn2;
35190+
}
35191+
if (typeof logger.error !== "function") {
35192+
logger.error = consoleError2;
35193+
}
35194+
return logger;
35195+
}
3518135196
var userAgentTrail2 = `octokit-core.js/${VERSION13} ${(0, import_universal_user_agent9.getUserAgent)()}`;
3518235197
var _a;
3518335198
var Octokit3 = (_a = class {
@@ -35239,15 +35254,7 @@ var require_dist_node9 = __commonJS({
3523935254
}
3524035255
this.request = import_request15.request.defaults(requestDefaults);
3524135256
this.graphql = (0, import_graphql2.withCustomRequest)(this.request).defaults(requestDefaults);
35242-
this.log = Object.assign(
35243-
{
35244-
debug: noop2,
35245-
info: noop2,
35246-
warn: consoleWarn2,
35247-
error: consoleError2
35248-
},
35249-
options.log
35250-
);
35257+
this.log = createLogger2(options.log);
3525135258
this.hook = hook6;
3525235259
if (!options.authStrategy) {
3525335260
if (!options.auth) {
@@ -38837,13 +38844,28 @@ var createTokenAuth = function createTokenAuth2(token) {
3883738844
};
3883838845

3883938846
//
38840-
var VERSION4 = "7.0.2";
38847+
var VERSION4 = "7.0.3";
3884138848

3884238849
//
3884338850
var noop = () => {
3884438851
};
3884538852
var consoleWarn = console.warn.bind(console);
3884638853
var consoleError = console.error.bind(console);
38854+
function createLogger(logger = {}) {
38855+
if (typeof logger.debug !== "function") {
38856+
logger.debug = noop;
38857+
}
38858+
if (typeof logger.info !== "function") {
38859+
logger.info = noop;
38860+
}
38861+
if (typeof logger.warn !== "function") {
38862+
logger.warn = consoleWarn;
38863+
}
38864+
if (typeof logger.error !== "function") {
38865+
logger.error = consoleError;
38866+
}
38867+
return logger;
38868+
}
3884738869
var userAgentTrail = `octokit-core.js/${VERSION4} ${getUserAgent()}`;
3884838870
var Octokit = class {
3884938871
static defaults(defaults) {
@@ -38902,15 +38924,7 @@ var Octokit = class {
3890238924
}
3890338925
this.request = request.defaults(requestDefaults);
3890438926
this.graphql = withCustomRequest(this.request).defaults(requestDefaults);
38905-
this.log = Object.assign(
38906-
{
38907-
debug: noop,
38908-
info: noop,
38909-
warn: consoleWarn,
38910-
error: consoleError
38911-
},
38912-
options.log
38913-
);
38927+
this.log = createLogger(options.log);
3891438928
this.hook = hook6;
3891538929
if (!options.authStrategy) {
3891638930
if (!options.auth) {

0 commit comments

Comments
 (0)