mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
e774eb01f3
* removed unused require * simplify config Co-authored-by: Andrew Henry <akhenry@gmail.com>
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
// This file extends the webpack.dev.js config to add istanbul coverage
|
|
// instrumentation using babel-plugin-istanbul (see babel.coverage.js)
|
|
|
|
const config = require('./webpack.dev');
|
|
const vueLoaderRule = config.module.rules.find(r => r.use === 'vue-loader');
|
|
// eslint-disable-next-line no-undef
|
|
const CI = process.env.CI === 'true';
|
|
|
|
config.devtool = CI ? false : undefined;
|
|
|
|
vueLoaderRule.use = {
|
|
loader: 'vue-loader'
|
|
// Attempt to use Babel with babel-plugin-istanbul
|
|
|
|
// TODO The purpose of this was to try to add coverage to JS expressions
|
|
// inside `<template>` markup, but it seems to add only coverage inside
|
|
// `<script>` tags.
|
|
// Issue: https://github.com/nasa/openmct/issues/4973
|
|
//
|
|
// options: {
|
|
// compiler: require('vue-template-babel-compiler'),
|
|
// compilerOptions: {
|
|
// babelOptions: require('./babel.coverage')
|
|
// }
|
|
// }
|
|
};
|
|
|
|
config.module.rules.push({
|
|
test: /\.js$/,
|
|
// test: /(\.js$)|(\?vue&type=template)/,
|
|
// exclude: /node_modules(?!.*\.vue)/,
|
|
exclude: /(Spec\.js$)|(node_modules)/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
retainLines: true,
|
|
// eslint-disable-next-line no-undef
|
|
plugins: [['babel-plugin-istanbul', {
|
|
extension: ['.js', '.vue']
|
|
}]]
|
|
}
|
|
}
|
|
});
|
|
|
|
module.exports = config;
|