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

fix: simplify transform RegExp #10207

Merged
merged 8 commits into from Oct 19, 2020
Merged

fix: simplify transform RegExp #10207

merged 8 commits into from Oct 19, 2020

Commits on Jun 26, 2020

  1. Update file regexp for babel-jest

    Before
    ```
    "^.+\\.[t|j]sx?$": "babel-jest"
    ```
    After
    ```
    "\\.[jt]sx?$": "babel-jest"
    ```
    
    RegExp's `[]` doesn't need `|`, in fact, it adds it to the character list it looks for (`/[t|j]/.test('|') === true`). Also since we care only about the suffix, no reason for `^.+`.
    elado committed Jun 26, 2020
    Copy the full SHA
    ad1493b View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2020

  1. update ALL THE FILES

    elado committed Jul 5, 2020
    Copy the full SHA
    708545f View commit details
    Browse the repository at this point in the history
  2. ;

    elado committed Jul 5, 2020
    Copy the full SHA
    3744eaa View commit details
    Browse the repository at this point in the history
  3. lint

    elado committed Jul 5, 2020
    Copy the full SHA
    bd5bd63 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2020

  1. Copy the full SHA
    e166df3 View commit details
    Browse the repository at this point in the history
  2. changelog

    SimenB committed Oct 19, 2020
    Copy the full SHA
    e5472a1 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    442e137 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    e016046 View commit details
    Browse the repository at this point in the history