mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 06:34:12 +00:00
* fix: update faker version, reduce int() deprecation * chore: pnpm format:write --------- Co-authored-by: shadcn <m@shadcn.com>
21 lines
632 B
TypeScript
Executable File
21 lines
632 B
TypeScript
Executable File
import fs from "fs"
|
|
import path from "path"
|
|
import { faker } from "@faker-js/faker"
|
|
|
|
import { labels, priorities, statuses } from "./data"
|
|
|
|
const tasks = Array.from({ length: 100 }, () => ({
|
|
id: `TASK-${faker.number.int({ min: 1000, max: 9999 })}`,
|
|
title: faker.hacker.phrase().replace(/^./, (letter) => letter.toUpperCase()),
|
|
status: faker.helpers.arrayElement(statuses).value,
|
|
label: faker.helpers.arrayElement(labels).value,
|
|
priority: faker.helpers.arrayElement(priorities).value,
|
|
}))
|
|
|
|
fs.writeFileSync(
|
|
path.join(__dirname, "tasks.json"),
|
|
JSON.stringify(tasks, null, 2)
|
|
)
|
|
|
|
console.log("✅ Tasks data generated.")
|