Skip to content
New issue

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

Use realpath to match transformers #5000

Merged
merged 6 commits into from
Dec 4, 2017
Merged

Use realpath to match transformers #5000

merged 6 commits into from
Dec 4, 2017

Commits on Dec 1, 2017

  1. Use realpath to match transformers

    This will use the realpath to match the transformers in case the path
    is a symlink. This will solve an issue where files which are linked by
    lerna or npm link are not transformed.
    
    Currently a solution for this problem would be a configuration like:
    ```json
    {
      "transformIgnorePatterns": [
        "<rootDir>/node_modules/"
      ]
    }
    ```
    k15a committed Dec 1, 2017
    Configuration menu
    Copy the full SHA
    d711cee View commit details
    Browse the repository at this point in the history
  2. Add Changelog

    k15a committed Dec 1, 2017
    Configuration menu
    Copy the full SHA
    5057ab2 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2017

  1. Configuration menu
    Copy the full SHA
    5b6299a View commit details
    Browse the repository at this point in the history
  2. Use native realpath

    k15a committed Dec 4, 2017
    Configuration menu
    Copy the full SHA
    85b3ef9 View commit details
    Browse the repository at this point in the history
  3. Add integration test

    k15a committed Dec 4, 2017
    Configuration menu
    Copy the full SHA
    87ed4b3 View commit details
    Browse the repository at this point in the history
  4. Remove unneeded import

    k15a committed Dec 4, 2017
    Configuration menu
    Copy the full SHA
    dd76308 View commit details
    Browse the repository at this point in the history