/** * Updates the package.json file * @param destPath - The path where the package.json file is located * @param packageName - The name of the package * @param description - The description of the package * @param fileName - The name of the output file * @param repoUrl - The repository URL */ export declare function updatePackageFile(destPath: string, packageName: string, description: string, fileName: string, repoUrl: string): Promise; /** * Updates the package.dist.json file with the new project name and description * @param destPath - The path where the package.dist.json file is located * @param packageName - The name of the package * @param description - The description of the package * @param fileName - The name of the output file * @param repoUrl - The url of the repository */ export declare function updatePackageDistFile(destPath: string, packageName: string, description: string, fileName: string, repoUrl: string): Promise; /** * Updates the webpack file with the new project name and description * @param destPath - The path where the project will be created * @param name - The name of the project * @param description - The description of the project * @param fnName - The name of the function to load the template */ export declare function updateWebpackFile(destPath: string, name: string, description: string, fnName: string): Promise; /** * Copies the empty template files to the destination path * @param destPath - The path where the project will be created */ export declare function copyEmptyTemplateFiles(destPath: string): Promise; /** * Filters the files to copy * @param src - The source file path * @returns true if the file should be copied */ export declare function copyFilter(src: string): boolean; /** * Runs npm install in the given path * @param destPath - The path where the project will be created */ export declare function runInstall(destPath: string): Promise; /** * Runs npm run build in the given path * @param destPath - The path where the project will be build */ export declare function runBuild(destPath: string): Promise;