lint: format webpack.js with prettier

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/602/head
Varun Patil 2023-04-20 23:07:09 -07:00
parent 48b417db0a
commit 7111c7c0e9
1 changed files with 31 additions and 34 deletions

View File

@ -1,51 +1,48 @@
const webpackConfig = require('@nextcloud/webpack-vue-config')
const WorkboxPlugin = require('workbox-webpack-plugin')
const path = require('path')
const TerserPlugin = require('terser-webpack-plugin')
const webpackConfig = require('@nextcloud/webpack-vue-config');
const WorkboxPlugin = require('workbox-webpack-plugin');
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const buildMode = process.env.NODE_ENV
const isDev = buildMode === 'development'
const buildMode = process.env.NODE_ENV;
const isDev = buildMode === 'development';
webpackConfig.module.rules.push({
test: /\.ts?$/,
loader: 'ts-loader',
exclude: /node_modules/,
options: {
appendTsSuffixTo: [/\.vue$/],
},
test: /\.ts?$/,
loader: 'ts-loader',
exclude: /node_modules/,
options: {
appendTsSuffixTo: [/\.vue$/],
},
});
webpackConfig.resolve.extensions.push('.ts');
webpackConfig.resolve.alias = {
'vue$': 'vue/dist/vue.esm.js',
}
vue$: 'vue/dist/vue.esm.js',
};
webpackConfig.entry.main = path.resolve(path.join('src', 'main'));
webpackConfig.watchOptions = {
ignored: /node_modules/,
aggregateTimeout: 300,
ignored: /node_modules/,
aggregateTimeout: 300,
};
webpackConfig.plugins.push(
new WorkboxPlugin.InjectManifest({
swSrc: path.resolve(path.join('src', 'service-worker.js')),
swDest: 'memories-service-worker.js',
})
new WorkboxPlugin.InjectManifest({
swSrc: path.resolve(path.join('src', 'service-worker.js')),
swDest: 'memories-service-worker.js',
})
);
// Exclusions from minification
const minifyExclude = [
/filerobot-image-editor/,
]
const minifyExclude = [/filerobot-image-editor/];
webpackConfig.optimization.minimizer[0] =
new TerserPlugin({
exclude: minifyExclude,
terserOptions: {
output: {
comments: false,
}
},
extractComments: true,
});
webpackConfig.optimization.minimizer[0] = new TerserPlugin({
exclude: minifyExclude,
terserOptions: {
output: {
comments: false,
},
},
extractComments: true,
});
module.exports = webpackConfig
module.exports = webpackConfig;