From 3d32d703bf5c5dfa1eb9fe589fd26039ce829ec8 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 30 Apr 2019 10:28:00 +0200 Subject: [PATCH] fix(core): update --- rollup.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rollup.config.js b/rollup.config.js index 3be12a5..decd62c 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -4,6 +4,7 @@ import sourceMaps from 'rollup-plugin-sourcemaps'; import typescript from 'rollup-plugin-typescript2'; import json from 'rollup-plugin-json'; import babel from 'rollup-plugin-babel'; +import nodeResolve from 'rollup-plugin-node-resolve'; const pkg = require('./package.json'); @@ -34,6 +35,7 @@ export default { noImplicitAny: false } } }), + nodeResolve(), // Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs) commonjs(), // Allow node_modules resolution, so you can use 'external' to control