From ac89490794ee3c1c033859ffea31a962a13cc96d Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Wed, 25 May 2022 23:20:51 +0200 Subject: [PATCH] refactor: renammed Tool.ts to tool.ts --- src/tools/base64-converter/index.ts | 2 +- src/tools/bcrypt/index.ts | 2 +- src/tools/bip39-generator/index.ts | 2 +- src/tools/case-converter/index.ts | 2 +- src/tools/color-converter/index.ts | 2 +- src/tools/crontab-generator/index.ts | 2 +- src/tools/date-time-converter/index.ts | 2 +- src/tools/device-information/index.ts | 2 +- src/tools/encryption/index.ts | 2 +- src/tools/git-memo/index.ts | 2 +- src/tools/hash-text/index.ts | 2 +- src/tools/html-entities/index.ts | 2 +- src/tools/index.ts | 2 +- src/tools/integer-base-converter/index.ts | 2 +- src/tools/json-viewer/index.ts | 2 +- src/tools/lorem-ipsum-generator/index.ts | 2 +- src/tools/qr-code-generator/index.ts | 2 +- src/tools/random-port-generator/index.ts | 2 +- src/tools/roman-numeral-converter/index.ts | 2 +- src/tools/text-statistics/index.ts | 2 +- src/tools/token-generator/index.ts | 2 +- src/tools/{Tool.ts => tool.ts} | 0 src/tools/url-encoder/index.ts | 2 +- src/tools/url-parser/index.ts | 2 +- src/tools/uuid-generator/index.ts | 2 +- 25 files changed, 24 insertions(+), 24 deletions(-) rename src/tools/{Tool.ts => tool.ts} (100%) diff --git a/src/tools/base64-converter/index.ts b/src/tools/base64-converter/index.ts index 702bd40f..4d9b1eca 100644 --- a/src/tools/base64-converter/index.ts +++ b/src/tools/base64-converter/index.ts @@ -1,5 +1,5 @@ import { FileDigit } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Base64 converter', diff --git a/src/tools/bcrypt/index.ts b/src/tools/bcrypt/index.ts index 7d917405..ad0f8d46 100644 --- a/src/tools/bcrypt/index.ts +++ b/src/tools/bcrypt/index.ts @@ -1,5 +1,5 @@ import { LockSquare } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Bcrypt', diff --git a/src/tools/bip39-generator/index.ts b/src/tools/bip39-generator/index.ts index 8f581d92..99bf0458 100644 --- a/src/tools/bip39-generator/index.ts +++ b/src/tools/bip39-generator/index.ts @@ -1,5 +1,5 @@ import { AlignJustified } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'BIP39 passphrase generator', diff --git a/src/tools/case-converter/index.ts b/src/tools/case-converter/index.ts index 81293ad4..810ce9ad 100644 --- a/src/tools/case-converter/index.ts +++ b/src/tools/case-converter/index.ts @@ -1,5 +1,5 @@ import { LetterCaseToggle } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Case converter', diff --git a/src/tools/color-converter/index.ts b/src/tools/color-converter/index.ts index e42ab378..024c95cc 100644 --- a/src/tools/color-converter/index.ts +++ b/src/tools/color-converter/index.ts @@ -1,5 +1,5 @@ import { Palette } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Color converter', diff --git a/src/tools/crontab-generator/index.ts b/src/tools/crontab-generator/index.ts index f117b339..08bba853 100644 --- a/src/tools/crontab-generator/index.ts +++ b/src/tools/crontab-generator/index.ts @@ -1,5 +1,5 @@ import { Alarm } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Crontab generator', diff --git a/src/tools/date-time-converter/index.ts b/src/tools/date-time-converter/index.ts index 81f70394..989703e0 100644 --- a/src/tools/date-time-converter/index.ts +++ b/src/tools/date-time-converter/index.ts @@ -1,5 +1,5 @@ import { Calendar } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Date-time converter', diff --git a/src/tools/device-information/index.ts b/src/tools/device-information/index.ts index adef009e..27961950 100644 --- a/src/tools/device-information/index.ts +++ b/src/tools/device-information/index.ts @@ -1,5 +1,5 @@ import { DeviceDesktop } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Device information', diff --git a/src/tools/encryption/index.ts b/src/tools/encryption/index.ts index 2bb7c742..468a7fb9 100644 --- a/src/tools/encryption/index.ts +++ b/src/tools/encryption/index.ts @@ -1,5 +1,5 @@ import { Lock } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Encrypt / decrypt text', diff --git a/src/tools/git-memo/index.ts b/src/tools/git-memo/index.ts index da83c512..1b027b74 100644 --- a/src/tools/git-memo/index.ts +++ b/src/tools/git-memo/index.ts @@ -1,5 +1,5 @@ import { BrandGit } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Git cheatsheet', diff --git a/src/tools/hash-text/index.ts b/src/tools/hash-text/index.ts index 0b4b336b..0cbe2b82 100644 --- a/src/tools/hash-text/index.ts +++ b/src/tools/hash-text/index.ts @@ -1,5 +1,5 @@ import { EyeOff } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Hash text', diff --git a/src/tools/html-entities/index.ts b/src/tools/html-entities/index.ts index d727196c..5d3b850b 100644 --- a/src/tools/html-entities/index.ts +++ b/src/tools/html-entities/index.ts @@ -1,5 +1,5 @@ import { Code } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Escape html entities', diff --git a/src/tools/index.ts b/src/tools/index.ts index 745b7d6b..90e217c4 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -1,5 +1,5 @@ import { LockOpen } from '@vicons/tabler'; -import type { ToolCategory } from './Tool'; +import type { ToolCategory } from './tool'; import { tool as jsonViewer } from './json-viewer'; import { tool as htmlEntities } from './html-entities'; diff --git a/src/tools/integer-base-converter/index.ts b/src/tools/integer-base-converter/index.ts index 16ae6232..7cdfd4dc 100644 --- a/src/tools/integer-base-converter/index.ts +++ b/src/tools/integer-base-converter/index.ts @@ -1,5 +1,5 @@ import { ArrowsLeftRight } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Integer base converter', diff --git a/src/tools/json-viewer/index.ts b/src/tools/json-viewer/index.ts index 1911f61d..67a17dc5 100644 --- a/src/tools/json-viewer/index.ts +++ b/src/tools/json-viewer/index.ts @@ -1,5 +1,5 @@ import { Braces } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'JSON viewer', diff --git a/src/tools/lorem-ipsum-generator/index.ts b/src/tools/lorem-ipsum-generator/index.ts index e7c40d37..b3d5a966 100644 --- a/src/tools/lorem-ipsum-generator/index.ts +++ b/src/tools/lorem-ipsum-generator/index.ts @@ -1,5 +1,5 @@ import { AlignJustified } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Lorem ipsum generator', diff --git a/src/tools/qr-code-generator/index.ts b/src/tools/qr-code-generator/index.ts index 3026e16e..6bd91633 100644 --- a/src/tools/qr-code-generator/index.ts +++ b/src/tools/qr-code-generator/index.ts @@ -1,5 +1,5 @@ import { Qrcode } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'QR Code generator', diff --git a/src/tools/random-port-generator/index.ts b/src/tools/random-port-generator/index.ts index 5957bdab..1373c41a 100644 --- a/src/tools/random-port-generator/index.ts +++ b/src/tools/random-port-generator/index.ts @@ -1,5 +1,5 @@ import { Server } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Random port generator', diff --git a/src/tools/roman-numeral-converter/index.ts b/src/tools/roman-numeral-converter/index.ts index ecaf57e4..bea4dec9 100644 --- a/src/tools/roman-numeral-converter/index.ts +++ b/src/tools/roman-numeral-converter/index.ts @@ -1,5 +1,5 @@ import { LetterX } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Roman numeral converter', diff --git a/src/tools/text-statistics/index.ts b/src/tools/text-statistics/index.ts index bc92be1c..82d49f17 100644 --- a/src/tools/text-statistics/index.ts +++ b/src/tools/text-statistics/index.ts @@ -1,5 +1,5 @@ import { FileText } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Text statistics', diff --git a/src/tools/token-generator/index.ts b/src/tools/token-generator/index.ts index 3bbd254e..1a9ab67b 100644 --- a/src/tools/token-generator/index.ts +++ b/src/tools/token-generator/index.ts @@ -1,5 +1,5 @@ import { ArrowsShuffle } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Token generator', diff --git a/src/tools/Tool.ts b/src/tools/tool.ts similarity index 100% rename from src/tools/Tool.ts rename to src/tools/tool.ts diff --git a/src/tools/url-encoder/index.ts b/src/tools/url-encoder/index.ts index a7481245..ccd4219f 100644 --- a/src/tools/url-encoder/index.ts +++ b/src/tools/url-encoder/index.ts @@ -1,5 +1,5 @@ import { Link } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Encode/decode url formatted strings', diff --git a/src/tools/url-parser/index.ts b/src/tools/url-parser/index.ts index 3119fdcb..548be394 100644 --- a/src/tools/url-parser/index.ts +++ b/src/tools/url-parser/index.ts @@ -1,5 +1,5 @@ import { Unlink } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Url parser', diff --git a/src/tools/uuid-generator/index.ts b/src/tools/uuid-generator/index.ts index 269ed1c0..3bd10253 100644 --- a/src/tools/uuid-generator/index.ts +++ b/src/tools/uuid-generator/index.ts @@ -1,5 +1,5 @@ import { Fingerprint } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'UUIDs v4 generator',