Initial boiler plate project
This commit is contained in:
87
node_modules/next/dist/server/lib/utils.js
generated
vendored
Normal file
87
node_modules/next/dist/server/lib/utils.js
generated
vendored
Normal file
@ -0,0 +1,87 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
RESTART_EXIT_CODE: null,
|
||||
checkNodeDebugType: null,
|
||||
getDebugPort: null,
|
||||
getMaxOldSpaceSize: null,
|
||||
getNodeOptionsWithoutInspect: null,
|
||||
myParseInt: null,
|
||||
printAndExit: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
RESTART_EXIT_CODE: function() {
|
||||
return RESTART_EXIT_CODE;
|
||||
},
|
||||
checkNodeDebugType: function() {
|
||||
return checkNodeDebugType;
|
||||
},
|
||||
getDebugPort: function() {
|
||||
return getDebugPort;
|
||||
},
|
||||
getMaxOldSpaceSize: function() {
|
||||
return getMaxOldSpaceSize;
|
||||
},
|
||||
getNodeOptionsWithoutInspect: function() {
|
||||
return getNodeOptionsWithoutInspect;
|
||||
},
|
||||
myParseInt: function() {
|
||||
return myParseInt;
|
||||
},
|
||||
printAndExit: function() {
|
||||
return printAndExit;
|
||||
}
|
||||
});
|
||||
const _commander = require("next/dist/compiled/commander");
|
||||
function printAndExit(message, code = 1) {
|
||||
if (code === 0) {
|
||||
console.log(message);
|
||||
} else {
|
||||
console.error(message);
|
||||
}
|
||||
process.exit(code);
|
||||
}
|
||||
const getDebugPort = ()=>{
|
||||
var _process_execArgv_find, _process_env_NODE_OPTIONS_match, _process_env_NODE_OPTIONS_match1, _process_env_NODE_OPTIONS;
|
||||
const debugPortStr = ((_process_execArgv_find = process.execArgv.find((localArg)=>localArg.startsWith("--inspect") || localArg.startsWith("--inspect-brk"))) == null ? void 0 : _process_execArgv_find.split("=", 2)[1]) ?? ((_process_env_NODE_OPTIONS = process.env.NODE_OPTIONS) == null ? void 0 : (_process_env_NODE_OPTIONS_match1 = _process_env_NODE_OPTIONS.match) == null ? void 0 : (_process_env_NODE_OPTIONS_match = _process_env_NODE_OPTIONS_match1.call(_process_env_NODE_OPTIONS, /--inspect(-brk)?(=(\S+))?( |$)/)) == null ? void 0 : _process_env_NODE_OPTIONS_match[3]);
|
||||
return debugPortStr ? parseInt(debugPortStr, 10) : 9229;
|
||||
};
|
||||
const NODE_INSPECT_RE = /--inspect(-brk)?(=\S+)?( |$)/;
|
||||
function getNodeOptionsWithoutInspect() {
|
||||
return (process.env.NODE_OPTIONS || "").replace(NODE_INSPECT_RE, "");
|
||||
}
|
||||
function myParseInt(value) {
|
||||
// parseInt takes a string and a radix
|
||||
const parsedValue = parseInt(value, 10);
|
||||
if (isNaN(parsedValue) || !isFinite(parsedValue) || parsedValue < 0) {
|
||||
throw new _commander.InvalidArgumentError(`'${value}' is not a non-negative number.`);
|
||||
}
|
||||
return parsedValue;
|
||||
}
|
||||
const RESTART_EXIT_CODE = 77;
|
||||
function checkNodeDebugType() {
|
||||
var _process_env_NODE_OPTIONS_match, _process_env_NODE_OPTIONS, _process_env_NODE_OPTIONS_match1, _process_env_NODE_OPTIONS1;
|
||||
let nodeDebugType = undefined;
|
||||
if (process.execArgv.some((localArg)=>localArg.startsWith("--inspect")) || ((_process_env_NODE_OPTIONS = process.env.NODE_OPTIONS) == null ? void 0 : (_process_env_NODE_OPTIONS_match = _process_env_NODE_OPTIONS.match) == null ? void 0 : _process_env_NODE_OPTIONS_match.call(_process_env_NODE_OPTIONS, /--inspect(=\S+)?( |$)/))) {
|
||||
nodeDebugType = "inspect";
|
||||
}
|
||||
if (process.execArgv.some((localArg)=>localArg.startsWith("--inspect-brk")) || ((_process_env_NODE_OPTIONS1 = process.env.NODE_OPTIONS) == null ? void 0 : (_process_env_NODE_OPTIONS_match1 = _process_env_NODE_OPTIONS1.match) == null ? void 0 : _process_env_NODE_OPTIONS_match1.call(_process_env_NODE_OPTIONS1, /--inspect-brk(=\S+)?( |$)/))) {
|
||||
nodeDebugType = "inspect-brk";
|
||||
}
|
||||
return nodeDebugType;
|
||||
}
|
||||
function getMaxOldSpaceSize() {
|
||||
var _process_env_NODE_OPTIONS_match, _process_env_NODE_OPTIONS;
|
||||
const maxOldSpaceSize = (_process_env_NODE_OPTIONS = process.env.NODE_OPTIONS) == null ? void 0 : (_process_env_NODE_OPTIONS_match = _process_env_NODE_OPTIONS.match(/--max[-_]old[-_]space[-_]size=(\d+)/)) == null ? void 0 : _process_env_NODE_OPTIONS_match[1];
|
||||
return maxOldSpaceSize ? parseInt(maxOldSpaceSize, 10) : undefined;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=utils.js.map
|
||||
Reference in New Issue
Block a user