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>
95 lines
No EOL
4.2 KiB
Text
95 lines
No EOL
4.2 KiB
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "runTypeCheck", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return runTypeCheck;
|
|
}
|
|
});
|
|
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
const _diagnosticFormatter = require("./diagnosticFormatter");
|
|
const _getTypeScriptConfiguration = require("./getTypeScriptConfiguration");
|
|
const _writeConfigurationDefaults = require("./writeConfigurationDefaults");
|
|
const _compileerror = require("../compile-error");
|
|
const _log = require("../../build/output/log");
|
|
function _interop_require_default(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
async function runTypeCheck(typescript, baseDir, distDir, tsConfigPath, cacheDir, isAppDirEnabled) {
|
|
const effectiveConfiguration = await (0, _getTypeScriptConfiguration.getTypeScriptConfiguration)(typescript, tsConfigPath);
|
|
if (effectiveConfiguration.fileNames.length < 1) {
|
|
return {
|
|
hasWarnings: false,
|
|
inputFilesCount: 0,
|
|
totalFilesCount: 0,
|
|
incremental: false
|
|
};
|
|
}
|
|
const requiredConfig = (0, _writeConfigurationDefaults.getRequiredConfiguration)(typescript);
|
|
const options = {
|
|
...requiredConfig,
|
|
...effectiveConfiguration.options,
|
|
declarationMap: false,
|
|
emitDeclarationOnly: false,
|
|
noEmit: true
|
|
};
|
|
let program;
|
|
let incremental = false;
|
|
if ((options.incremental || options.composite) && cacheDir) {
|
|
if (options.composite) {
|
|
(0, _log.warn)('TypeScript project references are not fully supported. Attempting to build in incremental mode.');
|
|
}
|
|
incremental = true;
|
|
program = typescript.createIncrementalProgram({
|
|
rootNames: effectiveConfiguration.fileNames,
|
|
options: {
|
|
...options,
|
|
composite: false,
|
|
incremental: true,
|
|
tsBuildInfoFile: _path.default.join(cacheDir, '.tsbuildinfo')
|
|
}
|
|
});
|
|
} else {
|
|
program = typescript.createProgram(effectiveConfiguration.fileNames, options);
|
|
}
|
|
const result = program.emit();
|
|
const ignoreRegex = [
|
|
// matches **/__(tests|mocks)__/**
|
|
/[\\/]__(?:tests|mocks)__[\\/]/,
|
|
// matches **/*.(spec|test).*
|
|
/(?<=[\\/.])(?:spec|test)\.[^\\/]+$/
|
|
];
|
|
const regexIgnoredFile = new RegExp(ignoreRegex.map((r)=>r.source).join('|'));
|
|
const allDiagnostics = typescript.getPreEmitDiagnostics(program).concat(result.diagnostics).filter((d)=>!(d.file && regexIgnoredFile.test(d.file.fileName)));
|
|
const firstError = allDiagnostics.find((d)=>d.category === typescript.DiagnosticCategory.Error && Boolean(d.file)) ?? allDiagnostics.find((d)=>d.category === typescript.DiagnosticCategory.Error);
|
|
// In test mode, we want to check all diagnostics, not just the first one.
|
|
if (process.env.__NEXT_TEST_MODE) {
|
|
if (firstError) {
|
|
const allErrors = allDiagnostics.filter((d)=>d.category === typescript.DiagnosticCategory.Error).map((d)=>'[Test Mode] ' + (0, _diagnosticFormatter.getFormattedDiagnostic)(typescript, baseDir, distDir, d, isAppDirEnabled));
|
|
console.error('\n\n===== TS errors =====\n\n' + allErrors.join('\n\n') + '\n\n===== TS errors =====\n\n');
|
|
// Make sure all stdout is flushed before we exit.
|
|
await new Promise((resolve)=>setTimeout(resolve, 100));
|
|
}
|
|
}
|
|
if (firstError) {
|
|
throw Object.defineProperty(new _compileerror.CompileError((0, _diagnosticFormatter.getFormattedDiagnostic)(typescript, baseDir, distDir, firstError, isAppDirEnabled)), "__NEXT_ERROR_CODE", {
|
|
value: "E394",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
const warnings = allDiagnostics.filter((d)=>d.category === typescript.DiagnosticCategory.Warning).map((d)=>(0, _diagnosticFormatter.getFormattedDiagnostic)(typescript, baseDir, distDir, d, isAppDirEnabled));
|
|
return {
|
|
hasWarnings: true,
|
|
warnings,
|
|
inputFilesCount: effectiveConfiguration.fileNames.length,
|
|
totalFilesCount: program.getSourceFiles().length,
|
|
incremental
|
|
};
|
|
}
|
|
|
|
//# sourceMappingURL=runTypeCheck.js.map |