vue: add jest testing hints on imports and add exports to package.json#2568
vue: add jest testing hints on imports and add exports to package.json#2568lucas-koehler wants to merge 2 commits intomasterfrom
Conversation
- Add documentation on import order for jest (or other) unit tests using CJS transformations - Add explicit `exports` property to vue's package.json to facilitate tools finding the correct bundle Mitigates #2250
✅ Deploy Preview for jsonforms-examples ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
The "exports" seems to have caused test issues on windows and mac 😅 Reason: This is a known category of issue in the Node.js ecosystem — exports + workspace symlinks + cross-platform is a notorious combination. Removing the exports field was the pragmatic fix. |
Add explicitexportsproperty to vue's package.json to facilitate tools finding the correct bundleCloses #2250