@serwist/build
Version:
A module that integrates into your build process, helping you generate a manifest of local files that should be precached.
30 lines (28 loc) • 1.16 kB
text/typescript
import { type Assignable, type Equals, assertType } from "./schema/assertType.js";
import { basePartial } from "./schema/base.js";
import { getManifestOptions } from "./schema/getManifest.js";
import { globPartial, optionalGlobDirectoryPartial, requiredGlobDirectoryPartial } from "./schema/glob.js";
import { baseInjectPartial, injectManifestOptions } from "./schema/injectManifest.js";
import { manifestEntry } from "./schema/manifestEntry.js";
import { manifestTransform, manifestTransformResult } from "./schema/manifestTransform.js";
import { SerwistConfigError } from "./schema/serwistConfigError.js";
import { optionalSwDestPartial, requiredSwDestPartial } from "./schema/swDest.js";
import { validationErrorMap } from "./schema/validationErrorMap.js";
export {
assertType,
basePartial,
globPartial,
baseInjectPartial as injectPartial,
injectManifestOptions,
getManifestOptions,
manifestEntry,
manifestTransform,
manifestTransformResult,
optionalGlobDirectoryPartial,
requiredGlobDirectoryPartial,
optionalSwDestPartial,
requiredSwDestPartial,
validationErrorMap,
SerwistConfigError,
};
export type { Assignable, Equals };