npmize
Version:
Let's create an npm package without worrying about anything.
27 lines (26 loc) • 1.68 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = default_1;
const getNodeCode_1 = __importDefault(require("./getNodeCode"));
const updateImports_1 = __importDefault(require("../updateImports"));
function default_1(filePath, fileContent, options) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
const updatedContent = yield (0, updateImports_1.default)(options.tempOutDir, filePath, fileContent, options.moduleType, (_a = options.tsConfig) === null || _a === void 0 ? void 0 : _a.baseUrl, (_b = options.tsConfig) === null || _b === void 0 ? void 0 : _b.paths);
return options.pushNodeCode && options.moduleType === 'mjs' && filePath.endsWith('.js')
? (0, getNodeCode_1.default)(updatedContent) + updatedContent
: updatedContent;
});
}
;