Skip to content

Commit

Permalink
wip: cleanup repo
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonmarcello committed Nov 28, 2023
1 parent 71e9060 commit 0b61362
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apps/docusaurus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ The documentation will be built and deployed to GitHub Pages automatically when
### Installation

```
$ npm i
$ yarn
```

### Local Development

```
$ npm run start
$ yarn start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"scripts": {
"clean": "turbo run clean && rm -rf .turbo **/node_modules .turbo-cookie",
"clean": "turbo run clean && rm -rf .turbo node_modules .turbo-cookie .swc",
"build": "turbo run build",
"start": "turbo run start --no-cache --continue",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx,json}\"",
Expand Down
4 changes: 2 additions & 2 deletions packages/wethegit-react-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"scripts": {
"dev": "vite",
"start": "vite build --watch",
"build": "rm -rf dist && npm run lint && vite build",
"clean": "rm -rf dist node_modules",
"build": "rm -rf dist && vite build",
"clean": "rm -rf dist node_modules .turbo",
"typecheck": "tsc --noEmit",
"lint": "eslint --fix --ext .jsx,js --ignore-path ../../.gitignore ."
},
Expand Down
2 changes: 1 addition & 1 deletion packages/wethegit-react-hooks/src/lib/hooks/use-in-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type InViewHook = [
/**
* The DOM node itself, once set by the `setTargetRef` function.
*/
HTMLElement | undefined
HTMLElement | undefined,
]

/**
Expand Down
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"cache": false
}
}
}
}

0 comments on commit 0b61362

Please sign in to comment.