@serenity-is/tsbuild 6.9.9 → 6.9.10

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -7
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -17,12 +17,6 @@ export interface TSBuildOptions {
17
17
  * defaults to ['Modules/** /*Page.ts', 'Modules/** /*Page.tsx', 'Modules/** /ScriptInit.ts'] */
18
18
  entryPoints?: string[];
19
19
 
20
- /** @obsolete Determines the root directories to search for entry points when entryPointsRegEx is specified. The default is ["Modules"] */
21
- entryPointRoots?: string[];
22
-
23
- /** @obsolete Prefer specifying entry point globs in sergen.json */
24
- entryPointsRegEx?: RegExp;
25
-
26
20
  /**
27
21
  * A set of mappings to pass to the importAsGlobalsPlugin. If this is undefined or any object and the plugins
28
22
  * is not specified, importAsGlobals plugin is enabled */
@@ -60,4 +54,7 @@ export interface TSBuildOptions {
60
54
  }
61
55
 
62
56
  /** Processes passed options and converts it to options suitable for esbuild */
63
- export const esbuildOptions: (opt: TSBuildOptions) => any;
57
+ export const esbuildOptions: (opt: TSBuildOptions) => any;
58
+ export const build: (opt: TSBuildOptions) => Promise<void>;
59
+ export function importAsGlobalsPlugin(mapping: Record<string, string>): any;
60
+ export function cleanPlugin(): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-is/tsbuild",
3
- "version": "6.9.9",
3
+ "version": "6.9.10",
4
4
  "author": "Serenity (https://serenity.is)",
5
5
  "bugs": "https://github.com/serenity-is/serenity/issues",
6
6
  "description": "Serenity ESBuild functions",