Stable version

This commit is contained in:
Belen Curcio
2017-03-28 14:21:06 -03:00
parent 1a115e4f2c
commit b76fa94354
2 changed files with 2 additions and 3 deletions
@@ -6,7 +6,6 @@ class Slot extends Component {
console.log('Slot Mounted');
}
render() {
const {slot} = this.props;
return (
<div>
{injectedPlugins}
+2 -2
View File
@@ -1,6 +1,6 @@
import {client as clientPlugins} from 'pluginsConfig';
function importer (slot) {
function importer () {
let context,
importedFiles;
@@ -66,7 +66,7 @@ function importer (slot) {
return filterByUserConfig(importedFiles)
.filter(key => key.format === 'js')
.reduce((entry, plugin) => {
entry.push(context(plugin.key)(getConfig(plugin.name)))
entry.push(context(plugin.key)(getConfig(plugin.name)));
return entry;
}, []);
}