mirror of
https://github.com/Azure/setup-helm.git
synced 2025-10-20 17:46:30 +00:00
v2 new release (#77)
This commit is contained in:
committed by
GitHub
parent
217bf70cbd
commit
199ab446df
22
node_modules/ts-jest/dist/compiler/transpiler.js
generated
vendored
22
node_modules/ts-jest/dist/compiler/transpiler.js
generated
vendored
@@ -1,32 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.initializeTranspilerInstance = function (configs, memoryCache, logger) {
|
||||
exports.initializeTranspilerInstance = void 0;
|
||||
exports.initializeTranspilerInstance = function (configs, logger) {
|
||||
logger.debug('initializeTranspilerInstance(): create typescript compiler');
|
||||
var _a = configs.parsedTsConfig, options = _a.options, fileNames = _a.fileNames;
|
||||
var options = configs.parsedTsConfig.options;
|
||||
var ts = configs.compilerModule;
|
||||
var program = ts.createProgram(fileNames, options);
|
||||
var updateFileInCache = function (contents, filePath) {
|
||||
var file = memoryCache.files.get(filePath);
|
||||
if (file && file.text !== contents) {
|
||||
file.version++;
|
||||
file.text = contents;
|
||||
}
|
||||
};
|
||||
return {
|
||||
compileFn: function (code, fileName) {
|
||||
updateFileInCache(code, fileName);
|
||||
logger.debug({ fileName: fileName }, 'compileFn(): compiling as isolated module');
|
||||
var result = ts.transpileModule(code, {
|
||||
fileName: fileName,
|
||||
transformers: configs.tsCustomTransformers,
|
||||
transformers: configs.customTransformers,
|
||||
compilerOptions: options,
|
||||
reportDiagnostics: configs.shouldReportDiagnostic(fileName),
|
||||
reportDiagnostics: configs.shouldReportDiagnostics(fileName),
|
||||
});
|
||||
if (result.diagnostics && configs.shouldReportDiagnostic(fileName)) {
|
||||
if (result.diagnostics && configs.shouldReportDiagnostics(fileName)) {
|
||||
configs.raiseDiagnostics(result.diagnostics, fileName, logger);
|
||||
}
|
||||
return [result.outputText, result.sourceMapText];
|
||||
},
|
||||
program: program,
|
||||
program: undefined,
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user