Skip to content

Commit

Permalink
fix: add method to turn on and off console.log while in development
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitamin committed Jun 24, 2021
1 parent 271a226 commit 9875b7e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
(async() => {
// lazy loading because of webpack warning for large bundle size

import ('@cocreate/sidenav')
// import ('@cocreate/sidenav')
// import ('@cocreate/modal')
// import ('@cocreate/fetch')
import ('@cocreate/floating-label')
// import ('@cocreate/floating-label')
// import ('@cocreate/htmltags')
import ('@cocreate/input')
import ('@cocreate/text')
import ('@cocreate/cursors')
// import ('@cocreate/input')
// import ('@cocreate/text')
// import ('@cocreate/cursors')

})();

import ccCss from '@cocreate/cocreatecss';
// import ccCss from '@cocreate/cocreatecss';
import './index.css'
import observer from '@cocreate/observer'
import './components/initAttributes'
Expand All @@ -24,10 +24,11 @@ import './components/initVdom'
import './components/initSelected'
import './components/initSelect'
import './components/contentEditable'
import './components/clipboard.js'

import crdt from '@cocreate/crdt'




export default { crdt, observer }
export default { observer, crdt }

0 comments on commit 9875b7e

Please sign in to comment.