fix: drop .js extensions from remaining relative imports
Some checks failed
CI / typecheck + lint + boundaries + test + build (push) Has been cancelled
CI / Playwright e2e (push) Has been cancelled
CI / Storybook smoke tests + visual regression (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Coverage snapshot / snapshot (push) Has been cancelled
Release Please / release-please (push) Has been cancelled
Sentry PII guard (R31) / pii-guard (push) Has been cancelled

Extends 8111639 to cover __factories__, __seeds__, __contracts__, and
core-testing barrels.
This commit is contained in:
danijel-lf
2026-05-26 12:04:44 +02:00
parent 3eaf50151f
commit 29eaefe47e
31 changed files with 75 additions and 58 deletions

View File

@@ -1,7 +1,7 @@
import { it, expect, beforeEach, describe } from "vitest";
import { defineContractSuite } from "@repo/core-testing/contract";
import type { I{{pascalCase entity}}Repository } from "../application/repositories/{{kebabCase entity}}.repository.interface.js";
import type { {{pascalCase entity}} } from "../entities/models/{{kebabCase entity}}.js";
import type { I{{pascalCase entity}}Repository } from "../application/repositories/{{kebabCase entity}}.repository.interface";
import type { {{pascalCase entity}} } from "../entities/models/{{kebabCase entity}}";
/**
* Known fixtures every implementation's `buildSubject` must pre-seed.

View File

@@ -1,4 +1,4 @@
import type { {{pascalCase entity}} } from "../entities/models/{{kebabCase entity}}.js";
import type { {{pascalCase entity}} } from "../entities/models/{{kebabCase entity}}";
/**
* Realistic dev seed for `bindDevSeed{{pascalCase name}}`.