UNPKG

react-hold-height

Version:

React component to hold the highest height established by a child component even though it no longer exists in the browser window

23 lines (21 loc) 461 B
const path = require('path'); module.exports = { devtool: 'eval-source-map', entry: { basic: path.resolve('examples', 'basic', 'basic.js'), loading: path.resolve('examples', 'loading', 'loading.js') }, output: { path: path.join(__dirname, 'examples'), filename: '[name]/[name].bundle.js' }, module: { loaders: [ { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' } ] } };