feat(build script): generate sourcemap for developer (#162)

This commit is contained in:
RiESAEX 2022-12-23 09:59:42 +08:00 committed by GitHub
parent 7e6bf89118
commit 22000e4f9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 4 deletions

View File

@ -9,11 +9,10 @@ import chalk from 'chalk';
import merge from 'deepmerge';
import chokidar from 'chokidar';
import yargsParser from 'yargs-parser';
import buildConfig from '../build.config.js';
import compiler from './compiler.mjs';
import randomColor from './randomColor.mjs';
import buildConfig from '../build.config.js';
const argv = yargsParser(process.argv.slice(2));
const ESM_OUTPUT_DIR = 'es';
@ -67,6 +66,9 @@ function getGlobalConfig() {
async function getPkgConfig(config, pkgName) {
const pkgConfigPath = path.join(getPkgPath(pkgName), CONFIG_FILE_NAME);
if (argv.watch) {
config.sourceMap = true;
}
if (fs.existsSync(pkgConfigPath)) {
const content = await import(process.platform === 'win32' ? `file://${pkgConfigPath}` : pkgConfigPath);
const result = merge(config, content.default);
@ -109,6 +111,9 @@ function transformFile(filePath, outputPath, config, log) {
try {
const code = fs.readFileSync(filePath, 'utf-8');
const shortFilePath = genShortPath(filePath);
if (config.sourceMap) {
config.sourceFileName = filePath;
}
const transformedCode = compiler(code, config);
const type = config.target === 'browser' ? ESM_OUTPUT_DIR : NODE_CJS_OUTPUT_DIR;

View File

@ -8,7 +8,7 @@ function transform(code, options) {
return result.code;
}
function transformNodeCode(code) {
function transformNodeCode(code, config) {
return transform(code, {
presets: [
[
@ -19,6 +19,8 @@ function transformNodeCode(code) {
},
],
],
sourceFileName: config.sourceMap ? config.sourceFileName : undefined,
sourceMaps: config.sourceMap ? 'inline' : false,
});
}
@ -41,7 +43,7 @@ function transformBrowserCode(code) {
export default function compiler(code, config) {
if (!config.target || config.target === 'node') {
return transformNodeCode(code);
return transformNodeCode(code, config);
}
if (config.target === 'browser') {
return transformBrowserCode(code);