We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As of the latest release, line 36 in the dist/index.js file now contains:
dist/index.js
import React from 'react';
This breaks a lot of projects using for example Jest, where items in node_modules are by default not passed through Babel.
People using Jest can add the following to their configs as a temporary workaround, but it's not optimal:
transformIgnorePatterns: ['node_modules/(?!react-simple-timefield)']
The text was updated successfully, but these errors were encountered:
79c3f27
fix: use commonjs as typescript build target (closes #26)
8aac2c7
Good catch! Just pushed https://www.npmjs.com/package/react-simple-timefield/v/3.2.3 👍
Sorry, something went wrong.
No branches or pull requests
As of the latest release, line 36 in the
dist/index.js
file now contains:This breaks a lot of projects using for example Jest, where items in node_modules are by default not passed through Babel.
People using Jest can add the following to their configs as a temporary workaround, but it's not optimal:
The text was updated successfully, but these errors were encountered: