This repository was archived by the owner on May 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 513
Move API to use/fallback in v2 #382
Comments
Should it not be When did Also, just want to clarify mixing objects and strings in So you could do: loader: ETP.extract({
fallbackLoader: 'style-loader',
use: [
'css-loader',
{
loader: 'postcss-loader',
options: { ... }
}
]
}) Or if loader: ETP.extract({
fallbackLoader: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
importLoaders: 1
}
},
{
loader: 'postcss-loader',
options: { ... }
}
]
}) |
Hi, This change hasn't been done yet. That's why the README isn't done yet. The old |
bebraw
added a commit
to bebraw/extract-text-webpack-plugin
that referenced
this issue
Feb 1, 2017
10 tasks
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
To comply with
use
, the API should look like this (to quote @sokra):We probably should give deprecation messages for the old fields.
The text was updated successfully, but these errors were encountered: