1.0.3 • Published 4 years ago

resolve-css v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

resolve-css

This Package resolves the local or node_module path of the css file.

install

npm install resolve-css

Usage

import path from "path";
import { stat } from "fs/promises";
import resolveCss from "resolve-css";

try {
    const [file, stat] = await resolveCss(stat, base, process.cwd());
} catch (e) {
    console.log("The file does not exists");
}

Resolution

The resolution is local if this fault will then search node_modules, the search on node_modules by node instance.

resolveCss

export type load = (file: string) => Promise<any>;
export default function resolveCss<T = any>(
    load: load,
    src: string,
    dir?: string
): [string, Promise<T>];