Spaces:
Build error
Build error
import { csvFormat } from "d3-dsv"; | |
import setup from "./setup.json" with { type: "json" }; | |
import {fetchAndRetry} from "../components/fetch-and-retry.js"; | |
const url = setup.base_url + "/categories.json"; | |
const response = await fetchAndRetry(url); | |
const json = await response.json(); | |
const categories = json.category_list.categories.map((d) => ({ | |
id: d.id, | |
name: d.name, | |
color: d.color, | |
// description: d.description, | |
// description_text: d.description_text, | |
// subcategory_ids: d.subcategory_ids, | |
})); | |
// Write out csv formatted data. | |
process.stdout.write(csvFormat(categories)); | |