mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-10 12:50:38 +08:00
* fixed[tagsView]: DEL_OTHERS_VIEWS cachedViews bug (#913) * mutations DEL_OTHERS_VIEWS state.cachedViews -> i type is string slice(begin: number, end: number) * fix[Tinymce]: fixed tinymce upload dialog bug #654 * [release] 3.7.3 * docs: add gitee * perf[login.vue]: Improve input background and cursor color (#927) * 完善input背景和光标色; 1.完善在Chrome浏览器时登陆界面的input标签 使用记住密码之后颜色和背景不一致; 2.目前的rgb值是 #2d3a4b 修改的rgb值是 #283443; 3.修复光标使用Chrome记录的账号之后变黑色; 4.移除 .title-container .title 重复的font-weight: 400; 5.不用IE我们大家都是好朋友!~ * Update index.vue * docs: tweak * tweak * fix: demo links * fixBug[waves.js]: wave's position (#949) * fixBug[waves.js]-wave's position * fix[waves.js]-wave's position * fix typo(#965) * update to webpack4 (#889) * [release] 3.8.0 * Update README.zh-CN.md * format code * docs: change vueAdmin-template => vue-admin-template
109 lines
2.5 KiB
JavaScript
109 lines
2.5 KiB
JavaScript
'use strict'
|
|
const path = require('path')
|
|
const config = require('../config')
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
|
const packageConfig = require('../package.json')
|
|
|
|
exports.assetsPath = function(_path) {
|
|
const assetsSubDirectory =
|
|
process.env.NODE_ENV === 'production'
|
|
? config.build.assetsSubDirectory
|
|
: config.dev.assetsSubDirectory
|
|
|
|
return path.posix.join(assetsSubDirectory, _path)
|
|
}
|
|
|
|
exports.cssLoaders = function(options) {
|
|
options = options || {}
|
|
|
|
const cssLoader = {
|
|
loader: 'css-loader',
|
|
options: {
|
|
sourceMap: options.sourceMap
|
|
}
|
|
}
|
|
|
|
const postcssLoader = {
|
|
loader: 'postcss-loader',
|
|
options: {
|
|
sourceMap: options.sourceMap
|
|
}
|
|
}
|
|
|
|
// generate loader string to be used with extract text plugin
|
|
function generateLoaders(loader, loaderOptions) {
|
|
const loaders = []
|
|
|
|
// Extract CSS when that option is specified
|
|
// (which is the case during production build)
|
|
if (options.extract) {
|
|
loaders.push(MiniCssExtractPlugin.loader)
|
|
} else {
|
|
loaders.push('vue-style-loader')
|
|
}
|
|
|
|
loaders.push(cssLoader)
|
|
|
|
if (options.usePostCSS) {
|
|
loaders.push(postcssLoader)
|
|
}
|
|
|
|
if (loader) {
|
|
loaders.push({
|
|
loader: loader + '-loader',
|
|
options: Object.assign({}, loaderOptions, {
|
|
sourceMap: options.sourceMap
|
|
})
|
|
})
|
|
}
|
|
|
|
return loaders
|
|
}
|
|
// https://vue-loader.vuejs.org/en/configurations/extract-css.html
|
|
return {
|
|
css: generateLoaders(),
|
|
postcss: generateLoaders(),
|
|
less: generateLoaders('less'),
|
|
sass: generateLoaders('sass', {
|
|
indentedSyntax: true
|
|
}),
|
|
scss: generateLoaders('sass'),
|
|
stylus: generateLoaders('stylus'),
|
|
styl: generateLoaders('stylus')
|
|
}
|
|
}
|
|
|
|
// Generate loaders for standalone style files (outside of .vue)
|
|
exports.styleLoaders = function(options) {
|
|
const output = []
|
|
const loaders = exports.cssLoaders(options)
|
|
|
|
for (const extension in loaders) {
|
|
const loader = loaders[extension]
|
|
output.push({
|
|
test: new RegExp('\\.' + extension + '$'),
|
|
use: loader
|
|
})
|
|
}
|
|
|
|
return output
|
|
}
|
|
|
|
exports.createNotifierCallback = () => {
|
|
const notifier = require('node-notifier')
|
|
|
|
return (severity, errors) => {
|
|
if (severity !== 'error') return
|
|
|
|
const error = errors[0]
|
|
const filename = error.file && error.file.split('!').pop()
|
|
|
|
notifier.notify({
|
|
title: packageConfig.name,
|
|
message: severity + ': ' + error.name,
|
|
subtitle: filename || '',
|
|
icon: path.join(__dirname, 'logo.png')
|
|
})
|
|
}
|
|
}
|