Skip to content

Commit

Permalink
Fix file names, etc in webpack.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
juhoojala committed Apr 1, 2016
1 parent ca8e66c commit df86b48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ var APP_DIR = path.resolve(__dirname, 'src');
var BUILD_DIR = path.resolve(__dirname, 'lib');

var config = {
entry: APP_DIR + 'bar-chart-range-selector.jsx',
entry: APP_DIR + '/line-chart.jsx',
output: {
path: BUILD_DIR,
filename: 'bar-chart-range-selector.js',
library: 'BarChartRangeSelector',
filename: 'line-chart.js',
library: 'LucifySmallLineChart',
libraryTarget: 'umd'
},
module: {
Expand Down Expand Up @@ -39,7 +39,7 @@ var config = {
commonjs2: 'react',
amd: 'react'
},
'd3': 'd3'
'd3': 'd3',
'lodash': 'lodash'
},
resolve: {
Expand Down

0 comments on commit df86b48

Please sign in to comment.