Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/windmill/node_modules/denoify/tools/transformCodebase.d.ts>transformCodebase

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
function transformCodebase
import { transformCodebase } from "https://deno.land/x/windmill@v1.67.0/node_modules/denoify/tools/transformCodebase.d.ts";

Apply a transformation function to every file of directory

Parameters

params: { srcDirPath: string; destDirPath: string; transformSourceCodeString: (params: { sourceCode: string; filePath: string; }) => Promise<{ modifiedSourceCode: string; newFileName?: string; } | undefined>; }

Returns

Promise<void>