Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Jun 11, 2024
1 parent 0803b55 commit 882fe86
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions bench/heavy-npm-deps/components/mantine.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
"use client";
import * as Mantine from "@mantine/core";
'use client'
import * as Mantine from '@mantine/core'

console.log(Mantine.Button.Group.classes);
console.log(Mantine.Button.Group.classes)

export function MantineComponent() {
return (
<>
<h1>Client Component</h1>
</>
);
)
}
8 changes: 4 additions & 4 deletions bench/heavy-npm-deps/components/mermaid.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"use client";
import * as Mermaid from "mermaid";
'use client'
import * as Mermaid from 'mermaid'

console.log(Mermaid);
console.log(Mermaid)
// console.log(Mantine.Button.Group.classes);

export function MermaidComponent() {
return (
<>
<h1>Client Component</h1>
</>
);
)
}
4 changes: 2 additions & 2 deletions bench/heavy-npm-deps/postcss.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ const config = {
plugins: {
tailwindcss: {},
},
};
}

export default config;
export default config
16 changes: 8 additions & 8 deletions bench/heavy-npm-deps/tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import type { Config } from "tailwindcss";
import type { Config } from 'tailwindcss'

const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
background: 'var(--background)',
foreground: 'var(--foreground)',
},
},
},
plugins: [],
};
export default config;
}
export default config

0 comments on commit 882fe86

Please sign in to comment.