From fdc4c7dc42f4d2bd7cca6cb0ebf54dc690ceffc7 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Fri, 12 Dec 2025 01:05:02 -0800 Subject: [PATCH] refactor: Avoid file names differing only on casing (src/core/[tT]ype.js) --- 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