-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: update some docs * refactor(report): extract function * docs: upgrade to docusaurus v3 * docs: remove deprecated flipper docs * docs: add pricing page * docs: add install command in most pages * docs: point to BAM's article * chore: fix eslint warning
- Loading branch information
Showing
16 changed files
with
4,035 additions
and
3,552 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Pricing | ||
|
||
`flashlight cloud` and [flashlight.dev](https://app.flashlight.dev) are running with BAM's servers and AWS Device Farm account. | ||
|
||
We offer those services **completely free** 🥳 | ||
However, this means there can be a queue while waiting for devices to be available. (BAM's projects and clients also have priority.) | ||
|
||
### Going further | ||
|
||
If you'd like to go further, like integrate with your own CI or device farm, contact us: | ||
<Contact /> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Example: Measuring list scrolling performance | ||
|
||
 | ||
|
||
Check out [this article](https://www.bam.tech/article/measuring-react-native-performance-with-flashlight) going in details on how to use the different `flashlight` commands to compare performance between `FlatList` and [`FlashList`](https://shopify.github.io/flash-list/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## Installation | ||
|
||
Install the CLI with: | ||
|
||
import Tabs from "@theme/Tabs"; | ||
import TabItem from "@theme/TabItem"; | ||
import CodeBlock from "@theme/CodeBlock"; | ||
|
||
<Tabs> | ||
<TabItem value="unix" label="macOS/Linux" default> | ||
<CodeBlock language="bash">curl https://get.flashlight.dev | bash</CodeBlock> | ||
</TabItem> | ||
<TabItem value="windows" label="Windows"> | ||
<CodeBlock language="bash">iwr https://get.flashlight.dev/windows -useb | iex</CodeBlock> | ||
</TabItem> | ||
</Tabs> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
/* eslint-disable import/no-unresolved */ | ||
// Import the original mapper | ||
import MDXComponents from "@theme-original/MDXComponents"; | ||
import Contact from "@site/src/components/Contact.mdx"; | ||
import Install from "@site/src/components/Install.mdx"; | ||
|
||
const _module = { | ||
// Re-use the default mapping | ||
...MDXComponents, | ||
// Map the "<Highlight>" tag to our Highlight component | ||
// `Highlight` will receive all props that were passed to `<Highlight>` in MDX | ||
Contact, | ||
Install, | ||
}; | ||
|
||
export default _module; |
Oops, something went wrong.