mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-29 10:38:35 -06:00
The loader used for minification should come first in the rules array (i.e. execute last, as webpack loaders are executed in reverse order).
207 lines
5.9 KiB
JavaScript
207 lines
5.9 KiB
JavaScript
const Service = require('../lib/Service')
|
|
|
|
const LANGS = ['css', 'sass', 'scss', 'less', 'styl', 'stylus']
|
|
const extractLoaderPath = require('mini-css-extract-plugin').loader
|
|
|
|
const LOADERS = {
|
|
css: 'css',
|
|
sass: 'sass',
|
|
scss: 'sass',
|
|
less: 'less',
|
|
styl: 'stylus',
|
|
stylus: 'stylus'
|
|
}
|
|
|
|
const genConfig = (pkg = {}, env) => {
|
|
const prevEnv = process.env.NODE_ENV
|
|
if (env) process.env.NODE_ENV = env
|
|
const service = new Service('/', { pkg })
|
|
service.init()
|
|
const config = service.resolveWebpackConfig()
|
|
process.env.NODE_ENV = prevEnv
|
|
return config
|
|
}
|
|
|
|
const findRule = (config, lang, index = 3) => {
|
|
const baseRule = config.module.rules.find(rule => {
|
|
return rule.test.test(`.${lang}`)
|
|
})
|
|
// all CSS rules have 4 oneOf rules:
|
|
// 0 - <style lang="module"> in Vue files
|
|
// 1 - <style> in Vue files
|
|
// 2 - *.modules.css imports from JS
|
|
// 3 - *.css imports from JS
|
|
return baseRule.oneOf[index]
|
|
}
|
|
|
|
const findLoaders = (config, lang, index) => {
|
|
const rule = findRule(config, lang, index)
|
|
if (!rule) {
|
|
throw new Error(`rule not found for ${lang}`)
|
|
}
|
|
return rule.use.map(({ loader }) => loader.replace(/-loader$/, ''))
|
|
}
|
|
|
|
const findOptions = (config, lang, _loader, index) => {
|
|
const rule = findRule(config, lang, index)
|
|
const use = rule.use.find(({ loader }) => loader.includes(`${_loader}-loader`))
|
|
return use.options || {}
|
|
}
|
|
|
|
test('default loaders', () => {
|
|
const config = genConfig({ postcss: {}})
|
|
|
|
LANGS.forEach(lang => {
|
|
const loader = lang === 'css' ? [] : LOADERS[lang]
|
|
expect(findLoaders(config, lang)).toEqual(['vue-style', 'css', 'postcss'].concat(loader))
|
|
expect(findOptions(config, lang, 'postcss').plugins).toBeFalsy()
|
|
// assert css-loader options
|
|
expect(findOptions(config, lang, 'css')).toEqual({
|
|
sourceMap: false,
|
|
importLoaders: 2
|
|
})
|
|
})
|
|
// sass indented syntax
|
|
expect(findOptions(config, 'sass', 'sass')).toEqual({ indentedSyntax: true, sourceMap: false })
|
|
})
|
|
|
|
test('production defaults', () => {
|
|
const config = genConfig({ postcss: {}}, 'production')
|
|
LANGS.forEach(lang => {
|
|
const loader = lang === 'css' ? [] : LOADERS[lang]
|
|
expect(findLoaders(config, lang)).toEqual([extractLoaderPath, 'css', 'postcss'].concat(loader))
|
|
expect(findOptions(config, lang, 'postcss').plugins).toBeFalsy()
|
|
expect(findOptions(config, lang, 'css')).toEqual({
|
|
sourceMap: false,
|
|
importLoaders: 2
|
|
})
|
|
})
|
|
})
|
|
|
|
test('CSS Modules rules', () => {
|
|
const config = genConfig({
|
|
vue: {
|
|
css: {
|
|
modules: true
|
|
}
|
|
}
|
|
})
|
|
LANGS.forEach(lang => {
|
|
const expected = {
|
|
importLoaders: 1, // no postcss-loader
|
|
localIdentName: `[name]_[local]_[hash:base64:5]`,
|
|
sourceMap: false,
|
|
modules: true
|
|
}
|
|
// vue-modules rules
|
|
expect(findOptions(config, lang, 'css', 0)).toEqual(expected)
|
|
// normal-modules rules
|
|
expect(findOptions(config, lang, 'css', 2)).toEqual(expected)
|
|
// normal rules
|
|
expect(findOptions(config, lang, 'css', 3)).toEqual(expected)
|
|
})
|
|
})
|
|
|
|
test('css.extract', () => {
|
|
const config = genConfig({
|
|
vue: {
|
|
css: {
|
|
extract: false
|
|
}
|
|
}
|
|
}, 'production')
|
|
LANGS.forEach(lang => {
|
|
const loader = lang === 'css' ? [] : LOADERS[lang]
|
|
// when extract is false in production, even without postcss config,
|
|
// an instance of postcss-loader is injected for inline minification.
|
|
expect(findLoaders(config, lang)).toEqual(['vue-style', 'css', 'postcss'].concat(loader))
|
|
expect(findOptions(config, lang, 'css').importLoaders).toBe(2)
|
|
expect(findOptions(config, lang, 'postcss').plugins).toBeTruthy()
|
|
})
|
|
|
|
const config2 = genConfig({
|
|
postcss: {},
|
|
vue: {
|
|
css: {
|
|
extract: false
|
|
}
|
|
}
|
|
}, 'production')
|
|
LANGS.forEach(lang => {
|
|
const loader = lang === 'css' ? [] : LOADERS[lang]
|
|
// if postcss config is present, two postcss-loaders will be used becasue it
|
|
// does not support mixing config files with loader options.
|
|
expect(findLoaders(config2, lang)).toEqual(['vue-style', 'css', 'postcss', 'postcss'].concat(loader))
|
|
expect(findOptions(config2, lang, 'css').importLoaders).toBe(3)
|
|
// minification loader should be injected before the user-facing postcss-loader
|
|
expect(findOptions(config2, lang, 'postcss').plugins).toBeTruthy()
|
|
})
|
|
})
|
|
|
|
test('css.sourceMap', () => {
|
|
const config = genConfig({
|
|
postcss: {},
|
|
vue: {
|
|
css: {
|
|
sourceMap: true
|
|
}
|
|
}
|
|
})
|
|
LANGS.forEach(lang => {
|
|
expect(findOptions(config, lang, 'css').sourceMap).toBe(true)
|
|
expect(findOptions(config, lang, 'postcss').sourceMap).toBe(true)
|
|
expect(findOptions(config, lang, LOADERS[lang]).sourceMap).toBe(true)
|
|
})
|
|
})
|
|
|
|
test('css-loader options', () => {
|
|
const localIdentName = '[name]__[local]--[hash:base64:5]'
|
|
const config = genConfig({
|
|
vue: {
|
|
css: {
|
|
loaderOptions: {
|
|
css: {
|
|
localIdentName,
|
|
camelCase: 'only'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
LANGS.forEach(lang => {
|
|
const vueOptions = findOptions(config, lang, 'css', 0)
|
|
expect(vueOptions.localIdentName).toBe(localIdentName)
|
|
expect(vueOptions.camelCase).toBe('only')
|
|
|
|
const extOptions = findOptions(config, lang, 'css', 2)
|
|
expect(extOptions.localIdentName).toBe(localIdentName)
|
|
expect(extOptions.camelCase).toBe('only')
|
|
})
|
|
})
|
|
|
|
test('css.loaderOptions', () => {
|
|
const data = '$env: production;'
|
|
const config = genConfig({
|
|
vue: {
|
|
css: {
|
|
loaderOptions: {
|
|
sass: {
|
|
data
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
expect(findOptions(config, 'scss', 'sass')).toEqual({ data, sourceMap: false })
|
|
expect(findOptions(config, 'sass', 'sass')).toEqual({ data, indentedSyntax: true, sourceMap: false })
|
|
})
|
|
|
|
test('skip postcss-loader if no postcss config found', () => {
|
|
const config = genConfig()
|
|
LANGS.forEach(lang => {
|
|
const loader = lang === 'css' ? [] : LOADERS[lang]
|
|
expect(findLoaders(config, lang)).toEqual(['vue-style', 'css'].concat(loader))
|
|
})
|
|
})
|