mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
fix(node-swc): Don't remove plugin from options (#1390)
This commit is contained in:
parent
8ef78a9e08
commit
a0898e8ce3
@ -106,18 +106,17 @@ export class Compiler {
|
||||
}
|
||||
|
||||
|
||||
const plugin = options.plugin;
|
||||
delete options.plugin;
|
||||
const { plugin, ...newOptions } = options;
|
||||
|
||||
if (plugin) {
|
||||
const m =
|
||||
typeof src === "string"
|
||||
? await this.parse(src, options?.jsc?.parser)
|
||||
: src;
|
||||
return this.transform(plugin(m), options);
|
||||
return this.transform(plugin(m), newOptions);
|
||||
}
|
||||
|
||||
return bindings.transform(isModule ? JSON.stringify(src) : src, isModule, toBuffer(options))
|
||||
return bindings.transform(isModule ? JSON.stringify(src) : src, isModule, toBuffer(newOptions))
|
||||
}
|
||||
|
||||
transformSync(src: string | Program, options?: Options): Output {
|
||||
@ -129,19 +128,18 @@ export class Compiler {
|
||||
}
|
||||
|
||||
|
||||
const plugin = options.plugin;
|
||||
delete options.plugin;
|
||||
const { plugin, ...newOptions } = options;
|
||||
|
||||
if (plugin) {
|
||||
const m =
|
||||
typeof src === "string" ? this.parseSync(src, options?.jsc?.parser) : src;
|
||||
return this.transformSync(plugin(m), options);
|
||||
return this.transformSync(plugin(m), newOptions);
|
||||
}
|
||||
|
||||
return bindings.transformSync(
|
||||
isModule ? JSON.stringify(src) : src,
|
||||
isModule,
|
||||
toBuffer(options),
|
||||
toBuffer(newOptions),
|
||||
)
|
||||
}
|
||||
|
||||
@ -153,15 +151,14 @@ export class Compiler {
|
||||
}
|
||||
|
||||
|
||||
const plugin = options.plugin;
|
||||
delete options.plugin;
|
||||
const { plugin, ...newOptions } = options;
|
||||
|
||||
if (plugin) {
|
||||
const m = await this.parseFile(path, options?.jsc?.parser);
|
||||
return this.transform(plugin(m), options);
|
||||
return this.transform(plugin(m), newOptions);
|
||||
}
|
||||
|
||||
return bindings.transformFile(path, false, toBuffer(options))
|
||||
return bindings.transformFile(path, false, toBuffer(newOptions))
|
||||
}
|
||||
|
||||
transformFileSync(path: string, options?: Options): Output {
|
||||
@ -172,15 +169,14 @@ export class Compiler {
|
||||
}
|
||||
|
||||
|
||||
const plugin = options?.plugin;
|
||||
delete options?.plugin;
|
||||
const { plugin, ...newOptions } = options;
|
||||
|
||||
if (plugin) {
|
||||
const m = this.parseFileSync(path, options?.jsc?.parser);
|
||||
return this.transformSync(plugin(m), options);
|
||||
return this.transformSync(plugin(m), newOptions);
|
||||
}
|
||||
|
||||
return bindings.transformFileSync(path, /* isModule */ false, toBuffer(options));
|
||||
return bindings.transformFileSync(path, /* isModule */ false, toBuffer(newOptions));
|
||||
}
|
||||
|
||||
|
||||
@ -302,4 +298,4 @@ export const DEFAULT_EXTENSIONS = Object.freeze([
|
||||
|
||||
function toBuffer(t: any): Buffer {
|
||||
return Buffer.from(JSON.stringify(t))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user