mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-30 01:29:35 +07:00
31 lines
434 B
TypeScript
31 lines
434 B
TypeScript
import { ucfirst } from "~/lib/utils";
|
|
|
|
export const visibilityList = ["public", "private", "unlisted"].map(
|
|
(value) => ({
|
|
value,
|
|
label: ucfirst(value),
|
|
})
|
|
);
|
|
|
|
export const cssPreprocessorList = [
|
|
{
|
|
label: "None",
|
|
value: "",
|
|
},
|
|
{
|
|
label: "PostCSS",
|
|
value: "postcss",
|
|
},
|
|
];
|
|
|
|
export const jsTranspilerList = [
|
|
{
|
|
label: "None",
|
|
value: "",
|
|
},
|
|
{
|
|
label: "SWC",
|
|
value: "swc",
|
|
},
|
|
];
|