From 81bfe57cb85690f4153683754ffb09f35a816dac Mon Sep 17 00:00:00 2001 From: Corentin THOMASSET Date: Sat, 26 Aug 2023 16:43:47 +0200 Subject: feat(new tool): text diff and comparator (#588) * feat(new tool): text diff and comparator * chore(ci): increased memory in CI --- src/tools/text-diff/index.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/tools/text-diff/index.ts (limited to 'src/tools/text-diff/index.ts') 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'), +}); -- cgit v1.2.3