Skip to content

Commit 96d4906

Browse files
committed
Switch to Yarn
1 parent 47d1fc3 commit 96d4906

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.next/
2+
.yarn/
23
public/
3-
yarn.lock
4+
.yarnrc.yml
45
next-env.d.ts

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Welcome to my personal website!
77

88
## Installing
99

10-
Dependencies are managed with [yarn](https://yarnpkg.com) and can be installed with
11-
the `yarn` command.
10+
Dependencies are managed with [yarn](https://yarnpkg.com) and can be installed
11+
with the `yarn` command.
1212

1313
```bash
1414
yarn

app/components/Button.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ const variantStyles = {
99
}
1010

1111
export interface ButtonProps
12-
extends React.HTMLAttributes<HTMLElement>,
12+
extends
13+
React.HTMLAttributes<HTMLElement>,
1314
Pick<React.ButtonHTMLAttributes<HTMLButtonElement>, "type">,
1415
Pick<React.AnchorHTMLAttributes<HTMLAnchorElement>, "download" | "href"> {
1516
as?: React.ElementType

app/styles/tailwind.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,16 @@
6666

6767
@keyframes dash {
6868
0% {
69-
stroke-dashoffset: 1;
7069
stroke-dasharray: 1, 150;
70+
stroke-dashoffset: 1;
7171
}
7272
50% {
73-
stroke-dashoffset: -35;
7473
stroke-dasharray: 90, 150;
74+
stroke-dashoffset: -35;
7575
}
7676
100% {
77-
stroke-dashoffset: -124;
7877
stroke-dasharray: 90, 150;
78+
stroke-dashoffset: -124;
7979
}
8080
}
8181

prettier.config.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ const config = {
99
},
1010
},
1111
],
12-
plugins: [
13-
"./node_modules/prettier-plugin-jsdoc/dist/index.js",
14-
"prettier-plugin-tailwindcss",
15-
"prettier-plugin-css-order",
16-
],
12+
plugins: ["prettier-plugin-tailwindcss", "prettier-plugin-css-order"],
1713
proseWrap: "always",
1814
semi: false,
1915
tailwindFunctions: ["clsx"],

0 commit comments

Comments
 (0)