import { type CollectOptions } from "https://deno.land/x/molt@0.17.2/lib/update.ts";
Properties
optional
cwd: string | URLThe working directory to resolve relative paths. If not specified, the current working directory is used.
optional
importMap: string | URLThe path to the import map used to resolve dependencies. If not specified, molt will automatically find deno.json or deno.jsonc in the current working directory or parent directories.
optional
lockFile: string | URLThe path to the lockfile being updated.
If not specified, molt will try to find deno.lock
in the current directory
or parent directories.
optional
ignore: (dependency: Dependency) => booleanA function to filter out dependencies.
optional
only: (dependency: Dependency) => booleanA function to pick dependencies.