mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 22:25:12 +00:00
feat: migrate to mini-css-extract-plugin
This commit is contained in:
parent
b2e7fb624b
commit
d828cbd04c
@ -1,6 +1,6 @@
|
|||||||
import path from 'path'
|
import path from 'path'
|
||||||
|
|
||||||
import ExtractTextPlugin from 'extract-text-webpack-plugin'
|
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
|
||||||
import FriendlyErrorsWebpackPlugin from '@nuxtjs/friendly-errors-webpack-plugin'
|
import FriendlyErrorsWebpackPlugin from '@nuxtjs/friendly-errors-webpack-plugin'
|
||||||
import TimeFixPlugin from 'time-fix-plugin'
|
import TimeFixPlugin from 'time-fix-plugin'
|
||||||
import webpack from 'webpack'
|
import webpack from 'webpack'
|
||||||
@ -163,12 +163,9 @@ export default function webpackBaseConfig({ name, isServer }) {
|
|||||||
|
|
||||||
// CSS extraction
|
// CSS extraction
|
||||||
const extractCSS = this.options.build.extractCSS
|
const extractCSS = this.options.build.extractCSS
|
||||||
// TODO: Temporary disabled in dev mode for fixing source maps
|
|
||||||
// (We need `source-map` devtool for *.css modules)
|
|
||||||
if (extractCSS && !this.options.dev) {
|
if (extractCSS && !this.options.dev) {
|
||||||
config.plugins.push(new ExtractTextPlugin(Object.assign({
|
config.plugins.push(new MiniCssExtractPlugin(Object.assign({
|
||||||
filename: this.getFileName('css'),
|
filename: this.getFileName('css')
|
||||||
allChunks: true
|
|
||||||
}, typeof extractCSS === 'object' ? extractCSS : {})))
|
}, typeof extractCSS === 'object' ? extractCSS : {})))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import path from 'path'
|
import path from 'path'
|
||||||
|
|
||||||
import ExtractTextPlugin from 'extract-text-webpack-plugin'
|
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
|
||||||
|
|
||||||
import postcssConfig from './postcss'
|
import postcssConfig from './postcss'
|
||||||
|
|
||||||
@ -15,13 +15,6 @@ export default function styleLoader(ext, loaders = [], isVueLoader = false) {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
// Prepare vue-style-loader
|
|
||||||
// https://github.com/vuejs/vue-style-loader
|
|
||||||
const vueStyleLoader = {
|
|
||||||
loader: 'vue-style-loader',
|
|
||||||
options: { sourceMap }
|
|
||||||
}
|
|
||||||
|
|
||||||
// -- Configure additional loaders --
|
// -- Configure additional loaders --
|
||||||
|
|
||||||
// style-resources-loader
|
// style-resources-loader
|
||||||
@ -73,26 +66,23 @@ export default function styleLoader(ext, loaders = [], isVueLoader = false) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// -- With extractCSS --
|
// -- With extractCSS --
|
||||||
// TODO: Temporary disabled in dev mode for fixing source maps
|
if (this.options.build.extractCSS) {
|
||||||
// (We need `source-map` devtool for *.css modules)
|
loaders.unshift(MiniCssExtractPlugin.loader)
|
||||||
if (this.options.build.extractCSS && !this.options.dev) {
|
if (this.options.dev) {
|
||||||
// ExtractTextPlugin
|
|
||||||
// https://github.com/webpack-contrib/extract-text-webpack-plugin
|
|
||||||
const extractLoader = ExtractTextPlugin.extract({
|
|
||||||
use: loaders,
|
|
||||||
fallback: vueStyleLoader
|
|
||||||
})
|
|
||||||
|
|
||||||
// css-hot-loader
|
// css-hot-loader
|
||||||
// https://github.com/shepherdwind/css-hot-loader
|
// https://github.com/shepherdwind/css-hot-loader
|
||||||
const hotLoader = {
|
loaders.unshift({
|
||||||
loader: 'css-hot-loader',
|
loader: 'css-hot-loader',
|
||||||
options: { sourceMap }
|
options: { sourceMap }
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
return this.options.dev ? [hotLoader].concat(extractLoader) : extractLoader
|
// Prepare vue-style-loader
|
||||||
|
// https://github.com/vuejs/vue-style-loader
|
||||||
|
loaders.unshift({
|
||||||
|
loader: 'vue-style-loader',
|
||||||
|
options: { sourceMap }
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
return loaders
|
||||||
// -- Without extractCSS --
|
|
||||||
return [vueStyleLoader].concat(loaders)
|
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,6 @@ export default function vueLoader({ isServer }) {
|
|||||||
// https://vue-loader.vuejs.org/en
|
// https://vue-loader.vuejs.org/en
|
||||||
const config = {
|
const config = {
|
||||||
postcss: postcssConfig.call(this),
|
postcss: postcssConfig.call(this),
|
||||||
extractCSS: !!this.options.build.extractCSS,
|
|
||||||
cssSourceMap: this.options.build.cssSourceMap,
|
cssSourceMap: this.options.build.cssSourceMap,
|
||||||
preserveWhitespace: false,
|
preserveWhitespace: false,
|
||||||
loaders: {
|
loaders: {
|
||||||
|
@ -39,7 +39,9 @@ export default {
|
|||||||
filenames: {
|
filenames: {
|
||||||
app: '[name].[chunkhash].js',
|
app: '[name].[chunkhash].js',
|
||||||
chunk: '[name].[chunkhash].js',
|
chunk: '[name].[chunkhash].js',
|
||||||
css: '[name].[contenthash].css'
|
// TODO: Use [name].[contenthash].css when webpack core supports [contenthash]
|
||||||
|
// https://github.com/webpack-contrib/mini-css-extract-plugin/pull/30#issuecomment-374700690
|
||||||
|
css: '[name].[chunkhash].css'
|
||||||
},
|
},
|
||||||
styleResources: {},
|
styleResources: {},
|
||||||
plugins: [],
|
plugins: [],
|
||||||
|
@ -72,7 +72,6 @@
|
|||||||
"es6-promise": "^4.2.4",
|
"es6-promise": "^4.2.4",
|
||||||
"esm": "^3.0.7",
|
"esm": "^3.0.7",
|
||||||
"etag": "^1.8.1",
|
"etag": "^1.8.1",
|
||||||
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
|
||||||
"file-loader": "^1.1.11",
|
"file-loader": "^1.1.11",
|
||||||
"fresh": "^0.5.2",
|
"fresh": "^0.5.2",
|
||||||
"fs-extra": "^5.0.0",
|
"fs-extra": "^5.0.0",
|
||||||
@ -85,6 +84,7 @@
|
|||||||
"lodash": "^4.17.5",
|
"lodash": "^4.17.5",
|
||||||
"lru-cache": "^4.1.2",
|
"lru-cache": "^4.1.2",
|
||||||
"memory-fs": "^0.4.1",
|
"memory-fs": "^0.4.1",
|
||||||
|
"mini-css-extract-plugin": "^0.2.0",
|
||||||
"minimist": "^1.2.0",
|
"minimist": "^1.2.0",
|
||||||
"opencollective": "^1.0.3",
|
"opencollective": "^1.0.3",
|
||||||
"ora": "^2.0.0",
|
"ora": "^2.0.0",
|
||||||
|
18
yarn.lock
18
yarn.lock
@ -385,7 +385,7 @@ async@^1.4.0:
|
|||||||
version "1.5.2"
|
version "1.5.2"
|
||||||
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
|
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
|
||||||
|
|
||||||
async@^2.1.4, async@^2.4.1:
|
async@^2.1.4:
|
||||||
version "2.6.0"
|
version "2.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
|
resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2686,15 +2686,6 @@ extglob@^2.0.4:
|
|||||||
snapdragon "^0.8.1"
|
snapdragon "^0.8.1"
|
||||||
to-regex "^3.0.1"
|
to-regex "^3.0.1"
|
||||||
|
|
||||||
extract-text-webpack-plugin@^4.0.0-beta.0:
|
|
||||||
version "4.0.0-beta.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-4.0.0-beta.0.tgz#f7361d7ff430b42961f8d1321ba8c1757b5d4c42"
|
|
||||||
dependencies:
|
|
||||||
async "^2.4.1"
|
|
||||||
loader-utils "^1.1.0"
|
|
||||||
schema-utils "^0.4.5"
|
|
||||||
webpack-sources "^1.1.0"
|
|
||||||
|
|
||||||
extract-zip@^1.6.5:
|
extract-zip@^1.6.5:
|
||||||
version "1.6.6"
|
version "1.6.6"
|
||||||
resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c"
|
resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c"
|
||||||
@ -4611,6 +4602,13 @@ mimic-fn@^1.0.0:
|
|||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
|
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
|
||||||
|
|
||||||
|
mini-css-extract-plugin@^0.2.0:
|
||||||
|
version "0.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.2.0.tgz#7a16b0e1096c86de8e4d1c3b063aa1aeae88d41d"
|
||||||
|
dependencies:
|
||||||
|
loader-utils "^1.1.0"
|
||||||
|
webpack-sources "^1.1.0"
|
||||||
|
|
||||||
minimalistic-assert@^1.0.0:
|
minimalistic-assert@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
|
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
|
||||||
|
Loading…
Reference in New Issue
Block a user