added fallback paths...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-10-25 18:25:56 +03:00
parent 0105d22575
commit 98bcdce33d

15
ui.js
View File

@ -9,9 +9,18 @@ var requirejs_cfg = {
// XXX one approach to avoid at least this section is to copy the // XXX one approach to avoid at least this section is to copy the
// modules to lib/*, this way we'll need the map section below // modules to lib/*, this way we'll need the map section below
// only... (without automation this also sounds bad) // only... (without automation this also sounds bad)
'lib/object': './node_modules/ig-object/object', 'lib/object': [
'lib/actions': './node_modules/ig-actions/actions', './node_modules/ig-object/object',
'lib/features': './node_modules/ig-features/features', './lib/object',
],
'lib/actions': [
'./node_modules/ig-actions/actions',
'./lib/actions',
],
'lib/features': [
'./node_modules/ig-features/features',
'./lib/features',
],
//'lib/keyboard': './node_modules/ig-keyboard/keyboard', //'lib/keyboard': './node_modules/ig-keyboard/keyboard',
}, },