Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TypeStrong/ts-loader
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.0.12
Choose a base ref
...
head repository: TypeStrong/ts-loader
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.0.18
Choose a head ref
  • 12 commits
  • 56 files changed
  • 7 contributors

Commits on Dec 29, 2020

  1. Add documentation for the useCaseSensitiveFileNames option (#1227)

    Setting this option on projects with lots of files can reduce compilation time. Case-insensitivty requires normalization of file paths, which involves executing regex's. This shows up in the hot path of compilation profiling.
    berickson1 authored Dec 29, 2020
    Configuration menu
    Copy the full SHA
    8f2a509 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2020

  1. Configuration menu
    Copy the full SHA
    3cc78b8 View commit details
    Browse the repository at this point in the history
  2. Add documentation about performance profiling (#1230)

    Co-authored-by: John Reilly <johnny_reilly@hotmail.com>
    berickson1 and johnnyreilly authored Dec 30, 2020
    Configuration menu
    Copy the full SHA
    14fa3f8 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2020

  1. Add a cache to file path mapping (#1228)

    * Add a cache to file path mapping
    This greatly reduces the time needed to resolve FilePathKey objects on watch builds.
    
    * Address PR comments
    
    * Bump package.json and CHANGELOG.md
    
    Co-authored-by: John Reilly <johnny_reilly@hotmail.com>
    berickson1 and johnnyreilly authored Dec 31, 2020
    Configuration menu
    Copy the full SHA
    e160564 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2021

  1. chore(deps): upgrade most production deps (#1237)

    * chore(deps): upgrade most production deps
    adjusted chalk import/initialization to new major
    
    * refactor: use namespace import
    
    * chore: bump patch version; update changelog
    
    * docs: add contributor name
    AviVahl authored Jan 5, 2021
    Configuration menu
    Copy the full SHA
    268bc69 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2021

  1. Configuration menu
    Copy the full SHA
    6816735 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2021

  1. Update definition files in watch mode in webpack@5 (#1249)

    * Add afterDeclarations to getCustomTransformers in README.md
    
    * Emit d.ts file in subsequent runs in watch mode
    
    * Update package.json and changelog.md
    appzuka authored Feb 4, 2021
    Configuration menu
    Copy the full SHA
    b8a70f9 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2021

  1. Re-fix Webpack 5 watch not failing on error (#1254)

    * Add afterDeclarations to getCustomTransformers in README.md
    
    * Emit d.ts file in subsequent runs in watch mode
    
    * Update package.json and changelog.md
    
    * Re-fixed missing errors in watch mode
    
    * Correct merge error
    appzuka authored Feb 8, 2021
    Configuration menu
    Copy the full SHA
    91206c4 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2021

  1. Configuration menu
    Copy the full SHA
    e9c2677 View commit details
    Browse the repository at this point in the history
  2. update docs for latest webpack 5 syntax (#1244)

    Co-authored-by: John Reilly <johnny_reilly@hotmail.com>
    e56 and johnnyreilly authored Feb 10, 2021
    1 Configuration menu
    Copy the full SHA
    591bd10 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2021

  1. Configuration menu
    Copy the full SHA
    953358e View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2021

  1. Optimize fileExists callback path (#1266)

    * Optimize fileExists callback path
    Instead of looking up filePathKey twice, cache in in the local scope. This isn't a hugely expensive lookup path, but is a hot path on large project recompiles (especially after caches are blown away). Profiling shows that even the Map lookup shows non-trivial cache lookup aggregate time
    
    * Update Changelog & package.json
    berickson1 authored Mar 11, 2021
    Configuration menu
    Copy the full SHA
    c2c1aef View commit details
    Browse the repository at this point in the history
Loading