-
-
Notifications
You must be signed in to change notification settings - Fork 15
Closed
Labels
p2: has workaroundBug for which an acceptable workaraound existBug for which an acceptable workaraound existstatus: blockedBlocked by an issue / missing feature of a dependency, or by another issueBlocked by an issue / missing feature of a dependency, or by another issuetype: developer experience
Description
Some modules are still commonjs and not yet converted to esm. Once this is done, the code using that module can be simplified:
- Prisma
- Improve Prisma imports: import type -> import
- Remove
@inject('PrismaClient')
- Replace import prisma from '@prisma/client' + destruct by import {...} from prisma
- container.register('PrismaClient', ...) -> container.register(PrismaClient (not as string but as type)
- ESM compabillity marchaos/jest-mock-extended#70
- Improve imports
- ESM Problems with Jest@26 and Node.js 14.x uuidjs/uuid#451
- Improve imports
- feat(snapshot): support snapshotResolver and snapshotSerializers written in ESM jestjs/jest#12014 jest snapshot serializer to esm
- Publish Apollo Server packages in ESM apollographql/apollo-server#5627
- Provide ES build alfonsobries/vue-tailwind#236 (or migrate to variant.js with vue3)
- Remove patch
- Distribute as ES module tangbc/vue-virtual-scroll-list#367
- Remove patch
- CJS / ES Module? microsoft/reflect-metadata#137
Metadata
Metadata
Assignees
Labels
p2: has workaroundBug for which an acceptable workaraound existBug for which an acceptable workaraound existstatus: blockedBlocked by an issue / missing feature of a dependency, or by another issueBlocked by an issue / missing feature of a dependency, or by another issuetype: developer experience