mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
aecbd226de
* feat: allow ui hide package managers on sidebar * add test * add changeset * chore: remove snapshot * chore: update config
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
import fs from 'fs';
|
|
|
|
import FriendlyErrorsPlugin from 'friendly-errors-webpack-plugin';
|
|
import HTMLWebpackPlugin from 'html-webpack-plugin';
|
|
import yalm from 'js-yaml';
|
|
import StyleLintPlugin from 'stylelint-webpack-plugin';
|
|
import webpack from 'webpack';
|
|
|
|
import env from '../config/env';
|
|
|
|
import getPackageJson from './getPackageJson';
|
|
import baseConfig from './webpack.config';
|
|
|
|
const configJsonFormat = yalm.safeLoad(fs.readFileSync('./tools/_verdaccio.config.yaml', 'utf8'));
|
|
export default {
|
|
...baseConfig,
|
|
mode: 'development',
|
|
entry: {
|
|
main: [
|
|
'whatwg-fetch',
|
|
'react-hot-loader/patch',
|
|
'webpack-dev-server/client?http://localhost:4873',
|
|
'webpack/hot/only-dev-server',
|
|
`${env.SRC_ROOT}/index.tsx`,
|
|
],
|
|
},
|
|
|
|
output: {
|
|
...baseConfig.output,
|
|
publicPath: '/',
|
|
},
|
|
|
|
devtool: 'inline-cheap-module-source-map',
|
|
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
__DEBUG__: true,
|
|
__APP_VERSION__: `"${getPackageJson('version')}"`,
|
|
}),
|
|
new HTMLWebpackPlugin({
|
|
__UI_OPTIONS: JSON.stringify({
|
|
...configJsonFormat.web,
|
|
filename: 'index.html',
|
|
verdaccioURL: '//localhost:4873',
|
|
base: new URL('/', 'http://localhost:4873'),
|
|
}),
|
|
template: `${env.SRC_ROOT}/template/index.html`,
|
|
debug: true,
|
|
inject: true,
|
|
}),
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.NoEmitOnErrorsPlugin(),
|
|
new FriendlyErrorsPlugin(),
|
|
new StyleLintPlugin({
|
|
files: ['src/**/styles.ts'],
|
|
failOnError: false,
|
|
emitErrors: false,
|
|
}),
|
|
],
|
|
};
|