From f767cbb2b1c0c42a4944405f3e59d4ac4abcf568 Mon Sep 17 00:00:00 2001 From: Young Yu Date: Mon, 15 Jan 2024 17:10:00 -0800 Subject: [PATCH] fix naming in git --- src/errors/{SimpleAppConfigError.ts => simpleAppConfigError.ts} | 0 src/errors/typeConversionError.ts | 2 +- src/errors/undefinedConfigValueError.ts | 2 +- src/errors/undefinedEnvVarError.ts | 2 +- src/errors/{unSupportedTypeError.ts => unsupportedTypeError.ts} | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename src/errors/{SimpleAppConfigError.ts => simpleAppConfigError.ts} (100%) rename src/errors/{unSupportedTypeError.ts => unsupportedTypeError.ts} (92%) diff --git a/src/errors/SimpleAppConfigError.ts b/src/errors/simpleAppConfigError.ts similarity index 100% rename from src/errors/SimpleAppConfigError.ts rename to src/errors/simpleAppConfigError.ts diff --git a/src/errors/typeConversionError.ts b/src/errors/typeConversionError.ts index 3b906de..11f6a70 100644 --- a/src/errors/typeConversionError.ts +++ b/src/errors/typeConversionError.ts @@ -1,4 +1,4 @@ -import { SimpleAppConfigError } from './SimpleAppConfigError'; +import { SimpleAppConfigError } from './simpleAppConfigError'; /** * An error extending {@link SimpleAppConfigError} that should be thrown when type conversion failed. diff --git a/src/errors/undefinedConfigValueError.ts b/src/errors/undefinedConfigValueError.ts index bd7e805..0d6f8be 100644 --- a/src/errors/undefinedConfigValueError.ts +++ b/src/errors/undefinedConfigValueError.ts @@ -1,4 +1,4 @@ -import { SimpleAppConfigError } from './SimpleAppConfigError'; +import { SimpleAppConfigError } from './simpleAppConfigError'; /** * An error extending {@link SimpleAppConfigError} that should be thrown when attempting to access a value from a configuration diff --git a/src/errors/undefinedEnvVarError.ts b/src/errors/undefinedEnvVarError.ts index c61806d..4be5de7 100644 --- a/src/errors/undefinedEnvVarError.ts +++ b/src/errors/undefinedEnvVarError.ts @@ -1,4 +1,4 @@ -import { SimpleAppConfigError } from './SimpleAppConfigError'; +import { SimpleAppConfigError } from './simpleAppConfigError'; /** * An error extending {@link SimpleAppConfigError} that should be thrown when accessing an environment variable that is undefined. diff --git a/src/errors/unSupportedTypeError.ts b/src/errors/unsupportedTypeError.ts similarity index 92% rename from src/errors/unSupportedTypeError.ts rename to src/errors/unsupportedTypeError.ts index 8cb09da..5a448e3 100644 --- a/src/errors/unSupportedTypeError.ts +++ b/src/errors/unsupportedTypeError.ts @@ -1,4 +1,4 @@ -import { SimpleAppConfigError } from './SimpleAppConfigError'; +import { SimpleAppConfigError } from './simpleAppConfigError'; /** * An error extending {@link SimpleAppConfigError} that should be thrown when a string is being converted to a nonexistent type.