Initial re-vamp of the History tab.

This commit is contained in:
Shruti B Iyer
2017-06-13 09:50:41 +01:00
committed by Dave Page
parent 16a15bf934
commit 1208206bc0
23 changed files with 694 additions and 179 deletions

View File

@@ -1,18 +1,21 @@
/* eslint-env node */
module.exports = {
context: __dirname + '/pgadmin/static/jsx',
entry: './components.jsx',
context: __dirname + '/pgadmin/static',
entry: {
reactComponents: './jsx/components.jsx',
history: './js/history/index.js',
},
output: {
libraryTarget: 'amd',
path: __dirname + '/pgadmin/static/js/generated',
filename: 'reactComponents.js',
filename: '[name].js',
},
module: {
rules: [{
test: /\.jsx?$/,
exclude: /node_modules/,
exclude: [/node_modules/, /vendor/],
use: {
loader: 'babel-loader',
options: {