@hpcc-js/esbuild-plugins 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ import type { Plugin } from "esbuild";
2
+ export interface ExcludeSourcemapOptions {
3
+ filter: RegExp;
4
+ }
5
+ export declare function excludeSourcemap(opts: ExcludeSourcemapOptions): Plugin;
@@ -0,0 +1,5 @@
1
+ export * from "./build.ts";
2
+ export * from "./exclude-sourcemap.ts";
3
+ export * from "./problem-matcher.ts";
4
+ export * from "./rebuild-logger.ts";
5
+ export * from "./sfx-wrapper.ts";
@@ -0,0 +1,2 @@
1
+ import type { Plugin } from "esbuild";
2
+ export declare function problemMatcher(): Plugin;
@@ -0,0 +1,5 @@
1
+ import type { Plugin } from "esbuild";
2
+ export interface RebuildLoggerOptions {
3
+ outfile?: string;
4
+ }
5
+ export declare function rebuildLogger(opts: RebuildLoggerOptions): Plugin;
@@ -0,0 +1,3 @@
1
+ import type { Plugin } from "esbuild";
2
+ export declare function wrap(path: string): Promise<string>;
3
+ export declare function sfxWasm(): Plugin;