From bc2a3cfad8c8ccbc27e05f929c19025c1562d632 Mon Sep 17 00:00:00 2001 From: givanz Date: Thu, 8 Jun 2017 17:46:10 +0300 Subject: [PATCH] Create Editor.js Changed utils from capitalize to lowercase to match directory name format to avoid the following error ERROR in ./src/editor/model/Editor.js Module not found: Error: Can't resolve 'Utils' in 'grapejs-git/grapesjs/src/editor/model' --- src/editor/model/Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/model/Editor.js b/src/editor/model/Editor.js index b705be166..fe57bf8a4 100644 --- a/src/editor/model/Editor.js +++ b/src/editor/model/Editor.js @@ -1,5 +1,5 @@ var deps = [ -require('Utils'), +require('utils'), require('storage_manager'), require('device_manager'), require('parser'),