summaryrefslogtreecommitdiffstats
path: root/configbackuprestore/vnfconfigbackupservice
AgeCommit message (Expand)AuthorFilesLines
2020-03-18Roll to next Frankfurt snapshotDan Timoney1-4/+4
2019-09-17Roll versions for FrankfurtTimoney, Dan (dt5972)1-4/+4
2019-09-16Update to use released version of parent pomTimoney, Dan (dt5972)1-4/+4
2019-09-11Roll versionsTimoney, Dan (dt5972)1-4/+4
2019-08-20Port to NeonTimoney, Dan (dt5972)1-4/+4
2019-08-16Fix error in ueb listener scriptTimoney, Dan (dt5972)1-4/+4
2019-08-08Use release version of artifactsTimoney, Dan (dt5972)1-4/+4
2019-05-03Roll to El Alto versionTimoney, Dan (dt5972)1-4/+4
2019-03-26Update to Fluorine SR2Timoney, Dan (dt5972)1-4/+4
2019-01-18Updates for FluorineTimoney, Dan (dt5972)1-5/+3
2018-11-06Fix license issuesTimoney, Dan (dt5972)1-1/+1
2018-10-26Added some dependencies and plugin in SDNC-231soumendu3-5/+29
2018-10-25Roll to initial Dublin snapshotTimoney, Dan (dt5972)1-4/+4
2018-10-04Roll to next snapshot versionAlexis de Talhouƫt1-4/+4
2018-10-04Refactor code and fix some ui issuesSoumendu Sekhar Acharya17-200/+339
2018-09-13Fix group idTimoney, Dan (dt5972)1-1/+1
2018-09-13Fix groupIdsTimoney, Dan (dt5972)1-5/+5
2018-09-12Epic-231:versioning, and backup the configurationDushyantSinghThakur113-0/+9735
">|| devConfig.port; let webpackCommon = require('./webpack.common'); function getEntrySources(sources) { for (let i in sources) { if (sources.hasOwnProperty(i)) { sources[i].push('webpack-dev-server/client?http://localhost:' + devPort); sources[i].push('webpack/hot/only-dev-server'); } } return sources; } let webpackDevConfig = Object.assign({}, webpackCommon, { entry: getEntrySources(devConfig.bundles), devtool: 'eval-source-map', output: { path: path.join(__dirname, 'dist'), publicPath: `http://localhost:${devPort}/onboarding/`, filename: '[name].js' }, devServer: { port: devPort, historyApiFallback: true, publicPath: `http://localhost:${devPort}/onboarding/`, contentBase: path.join(__dirname, 'dist'), hot: true, inline: true, stats: { colors: true, exclude: ['node_modules'] }, setup: proxyServer }, plugins: [ new webpack.DefinePlugin({ DEV: true, DEBUG: true }), new webpack.HotModuleReplacementPlugin(), new webpack.LoaderOptionsPlugin({ options: { eslint: { configFile: './.eslintrc', emitError: true, emitWarning: true }, context: '/' } }) ] }); module.exports = webpackDevConfig;