Skip to content
This repository has been archived by the owner on Jul 28, 2020. It is now read-only.

Commit

Permalink
Removed componentDriver and driverSuite from cfg/dist.js #880
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-martic-sociomantic committed Feb 14, 2019
1 parent 4a21ae9 commit e5ead08
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions cfg/dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ const distConfig = merge( {}, baseConfig, {
'commonjs2' : 'react-popper',
'window' : 'ReactPopper',
},
componentDriver : {
commonjs : 'nessie-ui/dist/componentDriver',
commonjs2 : 'nessie-ui/dist/componentDriver',
window : 'ComponentDriver',
},
lodash : {
'commonjs' : 'lodash',
'commonjs2' : 'lodash',
Expand Down Expand Up @@ -79,11 +74,6 @@ components.module.rules[ 1 ].use[ 0 ] = {
},
};

const componentDriver = merge( {}, distConfig, {
entry : path.join( __dirname, '../src/Testing/index.js' ),
output : { filename: 'componentDriver.js' },
} );

const componentsJS = merge( {}, distConfig, {
entry : path.join( __dirname, '../src/index.js' ),
output : { filename: 'componentsJS.js' },
Expand All @@ -95,21 +85,8 @@ const componentsJS = merge( {}, distConfig, {
],
} );

const driverSuite = merge( {}, distConfig, {
entry : path.join( __dirname, '../src/drivers.js' ),
output : { filename: 'driverSuite.js' },
plugins : [
new MiniCssExtractPlugin( {
allChunks : true,
filename : 'driverSuite.css',
} ),
],
} );


module.exports = [
componentDriver,
components,
componentsJS,
driverSuite,
];

0 comments on commit e5ead08

Please sign in to comment.