UNPKG

knip

Version:

Find and fix unused dependencies, exports and files in your TypeScript and JavaScript projects

13 lines (12 loc) 343 B
import { hasDependency } from '../../util/plugin.js'; const title = 'Astro DB'; const enablers = ['@astrojs/db']; const isEnabled = ({ dependencies }) => hasDependency(dependencies, enablers); const entry = ['db/config.{js,ts}', 'db/seed.{js,ts}']; const plugin = { title, enablers, isEnabled, entry, }; export default plugin;