@normed/bundle 2.0.6 → 2.1.2

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.
@@ -1,4 +1,4 @@
1
- import { Builder } from './types';
2
- import '@yarnpkg/pnpify';
1
+ import { Builder } from "./types";
2
+ import "@yarnpkg/pnpify";
3
3
  export declare const defaultBuilders: Builder[];
4
4
  export declare function getBuilder(builders: Builder[], ext: string): Builder | null;
@@ -1,3 +1,3 @@
1
- import '@normed/json-types';
2
- import { APIOptions_Bundle } from './types';
1
+ import "@normed/json-types";
2
+ import { APIOptions_Bundle } from "./types";
3
3
  export default function bundle(options?: APIOptions_Bundle): Promise<undefined>;
@@ -1,2 +1,2 @@
1
- import { APIOptions_Clean } from './types';
1
+ import { APIOptions_Clean } from "./types";
2
2
  export default function clean(options?: APIOptions_Clean): Promise<void>;
@@ -1,4 +1,4 @@
1
- import '@normed/json-types';
2
- import { Entrypoint, BuildConfig } from './types';
3
- import { NoMatchingBuilder } from './errors';
4
- export default function getEntrypoints(buildConfig: BuildConfig): Promise<(Entrypoint | NoMatchingBuilder)[]>;
1
+ import "@normed/json-types";
2
+ import { Entrypoint, BuildConfig } from "./types";
3
+ import { NoMatchingBuilder } from "./errors";
4
+ export default function getEntrypoints(buildConfig: BuildConfig, manuallySpecified?: string[]): Promise<(Entrypoint | NoMatchingBuilder)[]>;
@@ -1,5 +1,5 @@
1
- import type * as esbuild from 'esbuild';
2
- import { Platform } from './types';
1
+ import type * as esbuild from "esbuild";
2
+ import { Platform } from "./types";
3
3
  declare type Options = {
4
4
  inbase: string;
5
5
  outbase: string;
@@ -1,5 +1,5 @@
1
- import _clean from './clean';
2
- import _bundle from './bundle';
3
- export type { APIOptions } from './types';
1
+ import _clean from "./clean";
2
+ import _bundle from "./bundle";
3
+ export type { APIOptions } from "./types";
4
4
  export declare const clean: typeof _clean;
5
5
  export declare const bundle: typeof _bundle;