diff --git a/Cargo.toml b/Cargo.toml index 2631b8d1..d8486db9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,6 @@ version = "0.6.1" authors = ["Brendan Allan "] edition = "2021" description = "A prisma client for Rust" -license = "MIT" rust-version = "1.62" exclude = ["examples", "integration-tests"] diff --git a/docs/tailwind.config.cjs b/docs/tailwind.config.cjs deleted file mode 100644 index f5368a76..00000000 --- a/docs/tailwind.config.cjs +++ /dev/null @@ -1,8 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], - theme: { - extend: {}, - }, - plugins: [], -} diff --git a/docs/tailwind.config.mjs b/docs/tailwind.config.mjs new file mode 100644 index 00000000..f8a20966 --- /dev/null +++ b/docs/tailwind.config.mjs @@ -0,0 +1,8 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], + theme: { + extend: {}, + }, + plugins: [], +};