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
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:
@@ -1 +1,5 @@
|
||||
export { defineContractSuite, type ContractContext, type ContractSuite } from "./define-contract-suite.js";
|
||||
export {
|
||||
defineContractSuite,
|
||||
type ContractContext,
|
||||
type ContractSuite,
|
||||
} from "./define-contract-suite";
|
||||
|
||||
@@ -1 +1,5 @@
|
||||
export { defineFactory, type Factory, type FactoryContext } from "./define-factory.js";
|
||||
export {
|
||||
defineFactory,
|
||||
type Factory,
|
||||
type FactoryContext,
|
||||
} from "./define-factory";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
export * from "./factory/index.js";
|
||||
export * from "./contract/index.js";
|
||||
export * from "./instrumentation/index.js";
|
||||
export * from "./rate-limit/index.js";
|
||||
export * from "./factory/index";
|
||||
export * from "./contract/index";
|
||||
export * from "./instrumentation/index";
|
||||
export * from "./rate-limit/index";
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
export { stubPayloadConfig } from "./stub-config.js";
|
||||
export { mockPayloadModule } from "./mock-payload-module.js";
|
||||
export { stubPayloadConfig } from "./stub-config";
|
||||
export { mockPayloadModule } from "./mock-payload-module";
|
||||
|
||||
@@ -1,2 +1,5 @@
|
||||
export { renderWithProviders, type RenderOptions } from "./render-with-providers.js";
|
||||
export { createMockTrpcClient } from "./mock-trpc.js";
|
||||
export {
|
||||
renderWithProviders,
|
||||
type RenderOptions,
|
||||
} from "./render-with-providers";
|
||||
export { createMockTrpcClient } from "./mock-trpc";
|
||||
|
||||
Reference in New Issue
Block a user