Quantcast
Channel: JavaScriptMVC Forum
Viewing all articles
Browse latest Browse all 3491

Re : How to implement dependecy for not global module

$
0
0
First thinkg, this does not work:
  1. meta: {
  2.   "bootstrap/*": {
  3.     deps: ["jquery"]
  4.   }
  5. }
This works (still need to specify deps for each module):
  1. meta: {
  2.    "bootstrap/tab": {deps: ["jquery"]},
  3.    "bootstrap/modal": {deps: ["jquery"]}
  4.    ....
  5.   }
  6. }
And second:

it seems that meta deps only supported for global modules https://github.com/systemjs/systemjs#global-module-format-support


Viewing all articles
Browse latest Browse all 3491

Trending Articles