From db86507ef9bcefd0f89b627bf088df9e161311d2 Mon Sep 17 00:00:00 2001 From: Joey Baker Date: Sun, 28 Aug 2016 09:56:46 -0700 Subject: [PATCH] Fix: correct babel-polyfill version This installs the babel-polyfill for babel 6. #oops --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index b64af0b..48ddb4c 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ if (!global._babelPolyfill) { - require('babel/polyfill'); + require('babel-polyfill'); } import crud, { associations } from './crud';