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: angular/angular-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: randombk/angular-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 2, 2017

  1. fix(@ngtools/webpack): Fix cache invalidation error when watching

      Update of #4009 by @rynclark to latest version of codebase.
    
      TypeScript caches the contents of source files within the program
      to minimize redundant compilation of non-changing code. This cache
      is not invalidated in @ngtools/webpack, causing two issues:
        1. When the watcher is triggered, the old version of the source
           is used. A second save is necessary for changes to take effect.
        2. When a change would result in a compilation error, the initial
           save will pass without errors. Subsequent saves, even saves
           containing fixes to the original error, will continue to fail
           with the original error. This is likely caused by TypeScript
           trying to compare any new programs against an invalid prior
           program state.
    
    Signed-off-by: RandomBK <[email protected]>
    randombk committed Mar 2, 2017
    Configuration menu
    Copy the full SHA
    e2d8276 View commit details
    Browse the repository at this point in the history
Loading