UNPKG

bluecodex

Version:

Turn repetitive dev tasks into CLI commands with Typescript

10 lines (8 loc) 251 B
import path from "node:path"; export function getProjectPatterns(root: string) { return [ path.join(root, "bluecodex.{js,jsx,ts,tsx}"), path.join(root, "blue.{js,jsx,ts,tsx}"), path.join(root, ".blue/**/*.blue.{js,jsx,ts,tsx}"), ]; }