Searched refs:baseTransforms (Results 1 – 3 of 3) sorted by relevance
23 const baseTransforms = baseTransformsFactory(prefix); constant47 path: [...baseTransforms.path, ...(moduleConfig?.path ?? [])],48 content: [...baseTransforms.content, ...(moduleConfig?.content ?? [])],
27 const baseTransforms = await baseTransformsFactoryAsync(prefix); constant51 path: [...baseTransforms.path, ...(moduleConfig?.path ?? [])],52 content: [...baseTransforms.content, ...(moduleConfig?.content ?? [])],
85 await transformFilesAsync(packageFiles, baseTransforms(abiName));92 function baseTransforms(abiName: string): FileTransform[] { function