Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sitek94 committed Nov 26, 2023
1 parent 6082f6a commit ce89084
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 35 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.associations": {
"turbo.json": "jsonc"
}
}
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
- [x] set unified path aliases for all apps and shared libs (done for `apps/`, because `libs/` probably don't need them anyway)
- [x] add unused imports plugin to eslint
- [x] research if it's worth using `turbo` - probably yes, to make it easier to run tasks that depend on each other
- [ ] use turbo repo and ensure the following works
- [x] lint, test, build, develop
- [ ] gh actions
- [ ] deployment
- [ ] create diagram
- [ ] setup renovate

Expand Down Expand Up @@ -73,4 +77,4 @@ pnpm develop:remix
- https://github.com/storybookjs/storybook
- https://storybook.js.org/tutorials/design-systems-for-developers/react/en/architecture/
- https://turbo.build/repo/docs/getting-started/existing-monorepo
- https://github.com/vercel/style-guide/tree/canary
- https://github.com/vercel/style-guide/tree/canary
2 changes: 1 addition & 1 deletion libs/ui/src/components/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Button = ({ children, ...props }: ButtonProps) => {
return (
<button
type="button"
className="rounded-md bg-blue-500 px-4 py-2 text-white"
className="rounded-md bg-purple-500 px-4 py-2 text-white"
{...props}
>
{children}
Expand Down
38 changes: 5 additions & 33 deletions pnpm-lock.yaml

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

0 comments on commit ce89084

Please sign in to comment.