-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test: π write initial basic and disabled tests with vitest * test: π correctly test that we can disable svgo * docs: βοΈ update example for disabling svgo * test: π add tests for svgoOptions overrides * test: π update test name * ci: π‘ add tests to ci * test: π import module directly instead of using string
- Loading branch information
Showing
13 changed files
with
437 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
dist | ||
**/node_modules | ||
playground/.nuxt | ||
**/.nuxt | ||
**/*.d.ts | ||
**/pnpm-lock.yaml |
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,6 @@ | ||
// custom.d.ts | ||
declare module '*.svg' { | ||
import type { DefineComponent } from 'vue' | ||
const component: DefineComponent | ||
export default component | ||
} |
Oops, something went wrong.