From dbee782c4f7132237021deb45275e4744835b4bf Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Fri, 12 Dec 2025 09:07:27 +0000 Subject: [PATCH] refactor: Avoid file names differing only on casing (src/core/[tT]ype.js) (#36) Resolves #32. Reviewed-on: https://code.studioinfinity.org/StudioInfinity/nanomath/pulls/36 Co-authored-by: Glen Whitney Co-committed-by: Glen Whitney --- src/core/TypeDispatcher.js | 2 +- src/core/{type.js => types.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/core/{type.js => types.js} (100%) diff --git a/src/core/TypeDispatcher.js b/src/core/TypeDispatcher.js index 19b2917..5c96fb1 100644 --- a/src/core/TypeDispatcher.js +++ b/src/core/TypeDispatcher.js @@ -2,7 +2,7 @@ import ArrayKeyedMap from 'array-keyed-map' import {ResolutionError, isPlainFunction, isPlainObject} from './helpers.js' import {Implementations, ImplementationsGenerator} from './Implementations.js' -import {bootstrapTypes} from './type.js' +import {bootstrapTypes} from './types.js' import { Returns, ReturnType, ReturnTyping, Unknown, Type, whichType } from './Type.js' diff --git a/src/core/type.js b/src/core/types.js similarity index 100% rename from src/core/type.js rename to src/core/types.js