obsidian-dev-utils
Version:
This is the collection of useful functions that you can use for your Obsidian plugin development
14 lines (13 loc) • 327 B
text/typescript
/**
* @packageDocumentation
*
* Rename CSS esbuild plugin.
*/
import type { Plugin } from 'esbuild';
/**
* Plugin that renames the CSS file to the correct name.
*
* @param distFolder - The folder to rename the CSS file in.
* @returns The plugin.
*/
export declare function renameCssPlugin(distFolder: string): Plugin;