Skip to content

Commit b0f01d8

Browse files
author
Pablo Andres Dorado Suarez
committed
v0.4.0: Banana smoothie
* Using new API resources * Instantiating utilities in bootstrapping process * Validating Data Loaders
1 parent a73765b commit b0f01d8

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

lib/api/index.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ module.exports = function(namespace, dependencies){
2626
, _booting = false
2727
, _server = null;
2828

29-
_instance.insertComponent(
30-
'utilities', _instance.getComponents().utilities.getStore()
31-
);
29+
if(!_booted){
30+
_instance.insertComponent(
31+
'utilities', _instance.getComponents().utilities.getStore()
32+
);
33+
}
3234

3335
return {
3436
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bool.js",
3-
"version": "0.3.5",
3+
"version": "0.4.0",
44
"description": "Bool MVC Framework - Bootstraping Unit",
55
"main": "lib/index.js",
66
"license": "GPL-3.0",

0 commit comments

Comments
 (0)