Skip to content
This repository was archived by the owner on May 5, 2024. It is now read-only.

Commit 1be9591

Browse files
authored
šŸ› fix: #318 Tailwindcss prettier config should accomodate other plugins (#65)
1 parent b4936e9 commit 1be9591

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

ā€Ž__info.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,14 @@ export const heuristics = [
8080

8181
// check plugins
8282
const tailwindPlugin = "prettier-plugin-tailwindcss" in folderInfo.allDependencies;
83-
const sveltePlugin = "prettier-plugin-svelte" in folderInfo.allDependencies;
84-
if (!tailwindPlugin || sveltePlugin) return false;
83+
if (!tailwindPlugin) return false;
8584

86-
// prettier-plugin-tailwindcss should replace prettier-plugin-svelte in .prettierrc
8785
const prettierConfig = await readFile({ path: prettierConfigPath });
8886
if (!prettierConfig) return false;
8987

9088
const { text } = prettierConfig;
9189
const { plugins } = JSON.parse(text);
92-
return plugins.includes("prettier-plugin-tailwindcss") && !plugins.includes("prettier-plugin-svelte");
90+
return plugins.includes("prettier-plugin-tailwindcss");
9391
},
9492
},
9593
];

ā€Ž__run.js

+1-11
Original file line numberDiff line numberDiff line change
@@ -326,17 +326,7 @@ export const run = async ({ install, options, updateCss, updateJavaScript, updat
326326
await updateJson({
327327
path: prettierConfigPath,
328328
async json({ obj }) {
329-
const plugins = obj.plugins.filter((/** @type {string} */ plugin) => plugin !== "prettier-plugin-svelte");
330-
obj.plugins = ["prettier-plugin-tailwindcss", ...plugins];
331-
return { obj };
332-
},
333-
});
334-
335-
// update package.json
336-
await updateJson({
337-
path: "/package.json",
338-
async json({ obj }) {
339-
delete obj.devDependencies["prettier-plugin-svelte"];
329+
obj.plugins = obj.plugins ? [...obj.plugins, "prettier-plugin-tailwindcss"] : ["prettier-plugin-tailwindcss"];
340330
return { obj };
341331
},
342332
});

0 commit comments

Comments
Ā (0)