Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
152 lines
No EOL
6.2 KiB
Text
152 lines
No EOL
6.2 KiB
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "startTypeChecking", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return startTypeChecking;
|
|
}
|
|
});
|
|
const _log = /*#__PURE__*/ _interop_require_wildcard(require("./output/log"));
|
|
const _worker = require("../lib/worker");
|
|
const _spinner = /*#__PURE__*/ _interop_require_default(require("./spinner"));
|
|
const _events = require("../telemetry/events");
|
|
const _iserror = /*#__PURE__*/ _interop_require_default(require("../lib/is-error"));
|
|
const _durationtostring = require("./duration-to-string");
|
|
function _interop_require_default(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
function _getRequireWildcardCache(nodeInterop) {
|
|
if (typeof WeakMap !== "function") return null;
|
|
var cacheBabelInterop = new WeakMap();
|
|
var cacheNodeInterop = new WeakMap();
|
|
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
})(nodeInterop);
|
|
}
|
|
function _interop_require_wildcard(obj, nodeInterop) {
|
|
if (!nodeInterop && obj && obj.__esModule) {
|
|
return obj;
|
|
}
|
|
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
return {
|
|
default: obj
|
|
};
|
|
}
|
|
var cache = _getRequireWildcardCache(nodeInterop);
|
|
if (cache && cache.has(obj)) {
|
|
return cache.get(obj);
|
|
}
|
|
var newObj = {
|
|
__proto__: null
|
|
};
|
|
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
for(var key in obj){
|
|
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
if (desc && (desc.get || desc.set)) {
|
|
Object.defineProperty(newObj, key, desc);
|
|
} else {
|
|
newObj[key] = obj[key];
|
|
}
|
|
}
|
|
}
|
|
newObj.default = obj;
|
|
if (cache) {
|
|
cache.set(obj, newObj);
|
|
}
|
|
return newObj;
|
|
}
|
|
/**
|
|
* typescript will be loaded in "next/lib/verify-typescript-setup" and
|
|
* then passed to "next/lib/typescript/runTypeCheck" as a parameter.
|
|
*
|
|
* Since it is impossible to pass a function from main thread to a worker,
|
|
* instead of running "next/lib/typescript/runTypeCheck" in a worker,
|
|
* we will run entire "next/lib/verify-typescript-setup" in a worker instead.
|
|
*/ function verifyTypeScriptSetup(dir, distDir, intentDirs, typeCheckPreflight, tsconfigPath, disableStaticImages, cacheDir, enableWorkerThreads, hasAppDir, hasPagesDir, isolatedDevBuild) {
|
|
const typeCheckWorker = new _worker.Worker(require.resolve('../lib/verify-typescript-setup'), {
|
|
exposedMethods: [
|
|
'verifyTypeScriptSetup'
|
|
],
|
|
debuggerPortOffset: -1,
|
|
isolatedMemory: false,
|
|
numWorkers: 1,
|
|
enableWorkerThreads,
|
|
maxRetries: 0
|
|
});
|
|
return typeCheckWorker.verifyTypeScriptSetup({
|
|
dir,
|
|
distDir,
|
|
intentDirs,
|
|
typeCheckPreflight,
|
|
tsconfigPath,
|
|
disableStaticImages,
|
|
cacheDir,
|
|
hasAppDir,
|
|
hasPagesDir,
|
|
isolatedDevBuild
|
|
}).then((result)=>{
|
|
typeCheckWorker.end();
|
|
return result;
|
|
}).catch(()=>{
|
|
// The error is already logged in the worker, we simply exit the main thread to prevent the
|
|
// `Jest worker encountered 1 child process exceptions, exceeding retry limit` from showing up
|
|
process.exit(1);
|
|
});
|
|
}
|
|
async function startTypeChecking({ cacheDir, config, dir, nextBuildSpan, pagesDir, telemetry, appDir }) {
|
|
const ignoreTypeScriptErrors = Boolean(config.typescript.ignoreBuildErrors);
|
|
if (ignoreTypeScriptErrors) {
|
|
_log.info('Skipping validation of types');
|
|
}
|
|
let typeCheckingSpinnerPrefixText;
|
|
let typeCheckingSpinner;
|
|
if (!ignoreTypeScriptErrors) {
|
|
typeCheckingSpinnerPrefixText = 'Running TypeScript';
|
|
}
|
|
if (typeCheckingSpinnerPrefixText) {
|
|
typeCheckingSpinner = (0, _spinner.default)(typeCheckingSpinnerPrefixText);
|
|
}
|
|
const typeCheckAndLintStart = process.hrtime();
|
|
try {
|
|
const [verifyResult, typeCheckEnd] = await nextBuildSpan.traceChild('run-typescript').traceAsyncFn(()=>verifyTypeScriptSetup(dir, config.distDir, [
|
|
pagesDir,
|
|
appDir
|
|
].filter(Boolean), !ignoreTypeScriptErrors, config.typescript.tsconfigPath, config.images.disableStaticImages, cacheDir, config.experimental.workerThreads, !!appDir, !!pagesDir, config.experimental.isolatedDevBuild).then((resolved)=>{
|
|
const checkEnd = process.hrtime(typeCheckAndLintStart);
|
|
return [
|
|
resolved,
|
|
checkEnd
|
|
];
|
|
}));
|
|
if (typeCheckingSpinner) {
|
|
var _createSpinner;
|
|
typeCheckingSpinner.stop();
|
|
(_createSpinner = (0, _spinner.default)(`Finished TypeScript${ignoreTypeScriptErrors ? ' config validation' : ''} in ${(0, _durationtostring.hrtimeDurationToString)(typeCheckEnd)}`)) == null ? void 0 : _createSpinner.stopAndPersist();
|
|
}
|
|
if (!ignoreTypeScriptErrors && verifyResult) {
|
|
var _verifyResult_result, _verifyResult_result1, _verifyResult_result2;
|
|
telemetry.record((0, _events.eventTypeCheckCompleted)({
|
|
durationInSeconds: typeCheckEnd[0],
|
|
typescriptVersion: verifyResult.version,
|
|
inputFilesCount: (_verifyResult_result = verifyResult.result) == null ? void 0 : _verifyResult_result.inputFilesCount,
|
|
totalFilesCount: (_verifyResult_result1 = verifyResult.result) == null ? void 0 : _verifyResult_result1.totalFilesCount,
|
|
incremental: (_verifyResult_result2 = verifyResult.result) == null ? void 0 : _verifyResult_result2.incremental
|
|
}));
|
|
}
|
|
} catch (err) {
|
|
// prevent showing jest-worker internal error as it
|
|
// isn't helpful for users and clutters output
|
|
if ((0, _iserror.default)(err) && err.message === 'Call retries were exceeded') {
|
|
await telemetry.flush();
|
|
process.exit(1);
|
|
}
|
|
throw err;
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=type-check.js.map |