Skip to content

Instantly share code, notes, and snippets.

@ajpiano
Created April 18, 2012 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajpiano/e046cdfb9e575bf9e386 to your computer and use it in GitHub Desktop.
Save ajpiano/e046cdfb9e575bf9e386 to your computer and use it in GitHub Desktop.
deps
├ app/pageModules/addedTags.js
│ ├─ TM
│ ├─ modules/tags
│ └─ jquery
├ app/pageModules/containers.js
│ ├─ TM
│ ├─ modules/containers
│ └─ jquery
├ app/pageModules/tagLibrary.js
│ ├─ TM
│ ├─ modules/tags
│ └─ jquery
├ app/pageModules/permissions.js
│ ├─ TM
│ └─ jquery
├ app/pageModules/sites.js
│ ├─ TM
│ ├─ modules/sites
│ └─ jquery
├ app/main.js
│ ├─ TM
│ ├─ jquery
│ ├─ use!backbone
│ ├─ use!chosen
│ ├─ use!bootstrap
│ └─ html5shiv
├ app/modules/tags.js
│ ├─ TM
│ ├─ jquery
│ ├─ use!backbone
│ ├─ use!underscore
│ ├─ use!highlight
│ ├─ modules/ConfirmView
│ ├─ modules/FlashMsgViews
│ ├─ use!throttle-debounce
│ └─ use!isotope
├ app/modules/containers.js
│ ├─ TM
│ ├─ jquery
│ ├─ use!backbone
│ ├─ use!underscore
│ ├─ modules/sites
│ ├─ modules/tags
│ ├─ modules/ConfirmView
│ ├─ use!jquery-ui
│ ├─ use!throttle-debounce
│ └─ use!isotope
├ app/modules/ConfirmView.js
│ ├─ TM
│ ├─ jquery
│ ├─ use!backbone
│ └─ use!underscore
├ app/modules/sites.js
│ ├─ TM
│ ├─ jquery
│ ├─ use!backbone
│ └─ use!underscore
├ app/modules/FlashMsgViews.js
│ ├─ TM
│ ├─ jquery
│ ├─ use!backbone
│ └─ use!underscore
├ app/config.js
├ app/TM.js
│ ├─ jquery
│ ├─ use!underscore
│ ├─ use!backbone
│ └─ modules/FlashMsgViews
@jrburke
Copy link

jrburke commented Apr 18, 2012

Almond circular dependency error: module/FlashMsgView was included before TM, using dependency array syntax.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment