Skip to content

Commit

Permalink
docs: use green check
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed May 11, 2024
1 parent ddcffe6 commit 42bf849
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,14 @@ const mod = await import('importx')

<!-- TABLE_START -->

> Generated with version v0.0.0 at 2024-05-11T03:54:52.301Z
> Generated with version v0.0.1 at 2024-05-11T03:58:02.482Z
| | native | tsx | jiti | bundle-require |
| ------- | --- | --- | --- | --- |
| node | Import: ❌<br>Cache: ❌<br>No cache: ❌ | Import: ✔️<br>Cache: ❌<br>No cache: ✔️ | Import: ✔️<br>Cache: ✔️<br>No cache: ✔️ | Import: ✔️<br>Cache: ❌<br>No cache: ✔️ |
| tsx | Import: ✔️<br>Cache: ✔️<br>No cache: ❌ | N/A | N/A | N/A |
| deno | Import: ✔️<br>Cache: ✔️<br>No cache: ❌ | N/A | N/A | N/A |
| bun | Import: ✔️<br>Cache: ✔️<br>No cache: ❌ | N/A | N/A | N/A |
| node | Import: ❌<br>Cache: ❌<br>No cache: ❌ | Import: <br>Cache: ❌<br>No cache: | Import: <br>Cache: <br>No cache: | Import: <br>Cache: ❌<br>No cache: |
| tsx | Import: <br>Cache: <br>No cache: ❌ | N/A | N/A | N/A |
| deno | Import: <br>Cache: <br>No cache: ❌ | N/A | N/A | N/A |
| bun | Import: <br>Cache: <br>No cache: ❌ | N/A | N/A | N/A |

<!-- TABLE_END -->

Expand Down
6 changes: 3 additions & 3 deletions test/run-table.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ ${runtimes.map(runtime => `| ${runtime} | ${loaders.map((loader) => {
if (!record)
return 'N/A'
return [
`Import: ${record.import ? '✔️' : '❌'}`,
`Cache: ${record.importCache ? '✔️' : '❌'}`,
`No cache: ${record.importNoCache ? '✔️' : '❌'}`,
`Import: ${record.import ? '' : '❌'}`,
`Cache: ${record.importCache ? '' : '❌'}`,
`No cache: ${record.importNoCache ? '' : '❌'}`,
].join('<br>')
}).join(' | ')} |`).join('\n')}
`.trim()
Expand Down

0 comments on commit 42bf849

Please sign in to comment.