-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update dependencies & migrate to vitest from mocha/chai (#739)
* chore: migrate to vitest from mocha/chai * chore: update dependencies * docs: refactor HooksTable to separate component
- Loading branch information
1 parent
15ddaa6
commit 935bbdd
Showing
98 changed files
with
4,450 additions
and
4,361 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 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,37 @@ | ||
<template> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>before</th> | ||
<th>after</th> | ||
<th>methods</th> | ||
<th>multi</th> | ||
<th>details</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>{{ before ? 'yes' : 'no' }}</td> | ||
<td>{{ after ? 'yes' : 'no' }}</td> | ||
<td>{{ methods.join(", ") }}</td> | ||
<td>{{ typeof multi === 'boolean' ? multi ? 'yes' : 'no' : multi }}</td> | ||
<td><a :href="source" target="_blank">source</a></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const props = defineProps<{ | ||
before: boolean; | ||
after: boolean; | ||
methods: string[]; | ||
multi: boolean | string; | ||
source: string; | ||
}>(); | ||
</script> | ||
|
||
<script lang="ts"> | ||
</script> |
Large diffs are not rendered by default.
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
Oops, something went wrong.