vue-cli-plugin-styleguidist
Version:
vue cli 3.0 plugin for vue-styleguidist
166 lines (145 loc) • 4.55 kB
JavaScript
const vsg = require('vue-styleguidist')
const merge = require('webpack-merge')
const configSchemaImport = require('vue-styleguidist/lib/scripts/schemas/config')
const configSchema = configSchemaImport.default || configSchemaImport
const styleguidist = vsg.default || vsg
module.exports.defineConfig = vsg.defineConfig
module.exports = (api, options) => {
api.chainWebpack(webpackConfig => {
// make sure that the docs blocks
// are ignored during normal serve & build
webpackConfig.module
.rule('docs')
.resourceQuery(/blockType=docs/)
.use('docs-ignore-loader')
.loader(require.resolve('./empty-object-loader'))
})
api.registerCommand(
'styleguidist:build',
{
description: 'build the styleguidist website',
usage: 'vue-cli-service styleguidist:build [options]',
options: {
'--config': 'path to the config file',
'--verbose': 'show the full log',
'--ci':
'use when buidling on the ci, removes the progress bar for clearer log and faster build'
}
},
args => {
getStyleguidist(args, api, options).binutils.build()
}
)
api.registerCommand(
'styleguidist',
{
description: 'launch the styleguidist dev server',
usage: 'vue-cli-service styleguidist [options]',
options: {
'--config': 'path to the config file',
'--verbose': 'show the full log',
'--port': 'port to start the server on'
}
},
args => {
const server = getStyleguidist(args, api, options).binutils.server(args.open).app
// in order to avoid ghosted threads at the end of tests
;['SIGINT', 'SIGTERM'].forEach(signal => {
process.on(signal, () => {
server.close(() => {
process.exit(0)
})
})
})
// in tests, killing the process with SIGTERM causes execa to
// throw
if (process.env.VUE_CLI_TEST) {
process.stdin.on('data', data => {
if (data.toString() === 'close') {
// eslint-disable-next-line no-console
console.log('got close signal!')
server.close(() => {
process.exit(0)
})
}
})
}
}
)
}
function getStyleguidist(args, api, options) {
const confFilePath = api.resolve(args.config || './styleguide.config.js')
let sgConf = {}
try {
sgConf = confFilePath && confFilePath.length ? require(confFilePath) : {}
} catch (err) {
// revert to defaults if config file is absent
if (err.code !== 'ENOENT') {
throw err
}
}
// reset the default component expression
sgConf.components = sgConf.components || 'src/components/**/[A-Z]*.vue'
if (args.verbose !== undefined) {
sgConf.verbose = !!args.verbose
}
if (args.port !== undefined) {
sgConf.serverPort = parseInt(args.port, 10)
}
// remove the progress bar for faster compile
if (args.ci) {
sgConf.progressBar = false
}
const userWebpackConfig = sgConf.webpackConfig
options.outputDir = sgConf.styleguideDir || configSchema.styleguideDir.default
// avoid preload and prefetch errors
options.indexHtml = 'app.html'
// in styleguidist we only have one page so if users remove it, remove the version
options.pages = undefined
const cliWebpackConfig = getConfig(api)
return styleguidist(
sgConf,
config => (config.webpackConfig = merge(cliWebpackConfig, userWebpackConfig))
)
}
/**
* Make webpackConfig for styleguidist
* @param {Object} api
*/
function getConfig(api) {
const conf = api.resolveChainableWebpackConfig()
// avoid annoying notification when everything works
if (conf.plugins.has('fork-ts-checker')) {
conf.plugin('fork-ts-checker').tap(args => {
args[0].logger = {
// eslint-disable-next-line no-console
warn: console.warn,
// eslint-disable-next-line no-console
error: console.error,
info: function () {}
}
return args
})
}
if (conf.optimization.minimizer('terser')) {
conf.optimization.minimizer('terser').tap(args => {
args[0].terserOptions.mangle.keep_fnames = true
return args
})
}
// because we are dealing with hot replacement in vsg
// remove duplicate hot module reload plugin
conf.plugins.delete('hmr')
// styleguidist provides its own html plugin that outputs index.html
// this avoid conflicts with the html-webpack-plugin on webpack 5
const webpackVersion = require('webpack').version
if (webpackVersion.startsWith('5.')) {
conf.plugins.delete('html')
} else if (webpackVersion.startsWith('4.')){
conf.plugins.delete('preload')
conf.plugins.delete('prefetch')
}
// remove the double compiled successfully message
conf.plugins.delete('friendly-errors')
return api.resolveWebpackConfig(conf)
}