Skip to content

Commit

Permalink
Merge branch 'feat/anonymous-telemetry' of https://github.com/aidenyb…
Browse files Browse the repository at this point in the history
…ai/million into feat/anonymous-telemetry
  • Loading branch information
aidenybai committed Sep 15, 2023
2 parents 432def8 + 772514a commit 8e9bf7b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function detectBuildTool(): BuildTool | null {
for (const buildTool of buildTools) {
for (const fileName of buildTool.possibleFileNames) {
/**
* Check for all extentions
* Check for all extensions
*/
if (fs.existsSync(path.join(process.cwd(), fileName))) {
const currentbuildTool = { ...buildTool, configFilePath: fileName };
Expand Down
8 changes: 7 additions & 1 deletion website/pages/docs/virtualization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Virtualization is a technique for efficiently rendering large lists of items. It

You can easily install it via this command:

<Tabs items={['npm', 'pnpm', 'yarn']} storageKey="selected-pkg-manager">
<Tabs items={['npm', 'pnpm', 'yarn', 'bun']} storageKey="selected-pkg-manager">
{/* prettier-ignore */}
<Tab>
```bash copy
Expand All @@ -46,6 +46,12 @@ You can easily install it via this command:
yarn add @tanstack/react-virtual@beta
```
</Tab>
{/* prettier-ignore */}
<Tab>
```bash copy
bun add @tanstack/react-virtual@beta
```
</Tab>
</Tabs>

## Example
Expand Down

0 comments on commit 8e9bf7b

Please sign in to comment.