diff options
author | 2023-08-26 16:43:47 +0200 | |
---|---|---|
committer | 2023-08-26 16:43:47 +0200 | |
commit | 81bfe57cb85690f4153683754ffb09f35a816dac (patch) | |
tree | 15360fc716336d75319123aeb469d9a5aac4a4d4 /src/tools/text-diff/index.ts | |
parent | a9cd91ca9cc31dd47973b2f87b5e1912c8cb75fd (diff) | |
download | it-tools-81bfe57cb85690f4153683754ffb09f35a816dac.tar.gz it-tools-81bfe57cb85690f4153683754ffb09f35a816dac.tar.zst it-tools-81bfe57cb85690f4153683754ffb09f35a816dac.zip |
feat(new tool): text diff and comparator (#588)
* feat(new tool): text diff and comparator
* chore(ci): increased memory in CI
Diffstat (limited to 'src/tools/text-diff/index.ts')
-rw-r--r-- | src/tools/text-diff/index.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/text-diff/index.ts b/src/tools/text-diff/index.ts new file mode 100644 index 0000000..992acba --- /dev/null +++ b/src/tools/text-diff/index.ts @@ -0,0 +1,12 @@ +import { FileDiff } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'Text diff', + path: '/text-diff', + description: 'Compare two texts and see the differences between them.', + keywords: ['text', 'diff', 'compare', 'string', 'text diff', 'code'], + component: () => import('./text-diff.vue'), + icon: FileDiff, + createdAt: new Date('2023-08-16'), +}); |