Skip to content

Commit

Permalink
modified workspaces on main root package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
trace2798 committed May 26, 2023
1 parent 7509d3a commit 7ec5f78
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 24 deletions.
8 changes: 4 additions & 4 deletions docs/app/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FC } from "react";
import { FC } from 'react'

interface FooterProps {}

Expand Down Expand Up @@ -49,7 +49,7 @@ const Footer: FC<FooterProps> = ({}) => {
</div>
</div>
</>
);
};
)
}

export default Footer;
export default Footer
16 changes: 8 additions & 8 deletions docs/app/components/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"use client";
import { FC } from "react";
import CodeCopyButton from "./CodeCopyButton";
import { Button } from "./blocks/Button";
import Icons from "./Icons";
'use client'
import { FC } from 'react'
import CodeCopyButton from './CodeCopyButton'
import { Button } from './blocks/Button'
import Icons from './Icons'

interface HeroProps {}

Expand Down Expand Up @@ -32,7 +32,7 @@ const Hero: FC<HeroProps> = ({}) => {
</div>
</main>
</>
);
};
)
}

export default Hero;
export default Hero
26 changes: 24 additions & 2 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 2 additions & 9 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,11 @@
"next": "13.4.3",
"next-themes": "^0.2.1",
"postcss": "8.4.23",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^1.12.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},

"workspaces": {
"packages": [
"packages/*",
"examples/*",
"docs"
]
}
}
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"workspaces": {
"packages": [
"packages/*",
"examples/*"
"examples/*",
"docs"
]
},
"scripts": {
Expand Down

0 comments on commit 7ec5f78

Please sign in to comment.