UNPKG

339 BJavaScriptView Raw
1/**
2 * Entry point of the library.
3 *
4 * Depending on NODE_ENV variable, it proxies production or development build of
5 * the library.
6 */
7/* eslint-disable global-require, import/no-unresolved */
8
9if (process.env.NODE_ENV === 'production') {
10 module.exports = require('./dist/prod');
11} else {
12 module.exports = require('./dist/dev');
13}