Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.
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: webpack-contrib/extract-text-webpack-plugin
base: v3.0.0
Choose a base ref
...
head repository: webpack-contrib/extract-text-webpack-plugin
compare: v3.0.1
Choose a head ref
  • 5 commits
  • 6 files changed
  • 5 contributors

Commits on Jul 17, 2017

  1. Configuration menu
    Copy the full SHA
    083a6c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a660f3 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2017

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

Commits on Sep 14, 2017

  1. fix: get real path from __filename instead of __dirname (NS)

    Without this fix, this plugin doesn't work if your node_modules tree is
    made up of directories, but your files are symlinks. It's admittedly a
    weird environment, but that's the environment that the Bazel build
    system runs code in, which is the build system we use at Dropbox.
    
    This is the bug:
    
     - index.js is called from the runfiles directory, and it uses the
       realpath of its directory as the key for a function on the
       loaderContext object.
    
     - loader.js is called from the bazel-bin/npm directory outside
       of its runfiles (because Webpack escapes the runfiles when it
       calls loaders). It uses the realpath of its directory as a
       key on the loaderContext object, but because it's in a
       different directory from index.js, it can't find the function
       set on the loaderContext by index.js.
    
    The fix is to get the realpath of the filename instead of the
    directory so that both files point to the same place.
    samertm authored and evilebottnawi committed Sep 14, 2017
    Configuration menu
    Copy the full SHA
    8de6558 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2017

  1. chore(release): 3.0.1

    joshwiens committed Oct 3, 2017
    Configuration menu
    Copy the full SHA
    4cfde50 View commit details
    Browse the repository at this point in the history