UNPKG
r-d3
Version:
latest (0.6.0)
0.6.0
0.5.0
0.4.0
0.3.0
0.2.2
0.2.1
0.2.0
0.1.0
D3 data, React rendering.
github.com/ericgio/r-d3
ericgio/r-d3
r-d3
/
webpack.config.examples.js
11 lines
(9 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
path =
require
(
'path'
);
var
webpackConfig =
require
(
'./webpack.config'
); module.exports = Object.
assign
(webpackConfig, {
entry
:
'./examples/index.js'
,
output
: {
path
: path.
resolve
(
'examples'
),
filename
:
'package-examples.js'
, }, });