From 2256ddd75ca2d01c8a7739cc0bde2fb2f2b5d5c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Vargas=2C=20Jos=C3=A9=20Pablo?= Date: Thu, 25 Dec 2025 18:06:30 -0600 Subject: [PATCH 1/3] fix: Correct repository in `package.json` --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index a9fda1d..0d49127 100644 --- a/package.json +++ b/package.json @@ -7,13 +7,13 @@ "collagejs", "micro-frontend" ], - "homepage": "https://github.com/collagejs/vite#readme", + "homepage": "https://github.com/collagejs/importmap#readme", "bugs": { - "url": "https://github.com/collagejs/vite/issues" + "url": "https://github.com/collagejs/importmap/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/collagejs/vite.git" + "url": "git+https://github.com/collagejs/importmap.git" }, "license": "MIT", "author": { From f312520305168a683eca2a703f5002488e35ebc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Vargas=2C=20Jos=C3=A9=20Pablo?= Date: Thu, 25 Dec 2025 18:17:38 -0600 Subject: [PATCH 2/3] fix: Try fix --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 14a3ee8..27fd3c0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,10 +13,10 @@ "declaration": true, "declarationMap": true, "sourceMap": true, + "rootDir": "./src" }, "include": [ "src/**/*", - "tests/**/*", ], "exclude": [ "dist", From 5c17906e47ef00b2f2583b6f372821a7cd0c3a1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Vargas=2C=20Jos=C3=A9=20Pablo?= Date: Thu, 25 Dec 2025 18:35:04 -0600 Subject: [PATCH 3/3] fix: Correct case sensitivity for renamed files --- src/{Resolver.ts => resolver.ts} | 0 tests/{Resolver.test.ts => resolver.test.ts} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename src/{Resolver.ts => resolver.ts} (100%) rename tests/{Resolver.test.ts => resolver.test.ts} (100%) diff --git a/src/Resolver.ts b/src/resolver.ts similarity index 100% rename from src/Resolver.ts rename to src/resolver.ts diff --git a/tests/Resolver.test.ts b/tests/resolver.test.ts similarity index 100% rename from tests/Resolver.test.ts rename to tests/resolver.test.ts