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

Re : When is next version of JMVC coming out after v3.3 and Is there a migration guide from jumping from steal build on JMVC to stealjs.com build.

$
0
0
I figured it out, thanks for your help and direction Justin, 

So digging in more and trying all sorts of configurations, it boiled down to my paths. 

So in my package.json file looks like.
  1. {
    "system": {
    "paths": {
    "myapp/*" : "dummy/*.js"
    },
    "meta": {
    "myapp/test1": {
    "deps": [
    "components/test/test"
    ]
    }
    }
    }
    }

And the important file path change here in my steal statements as an example myapp.js below

  1. steal('myapp/test1.js', function(){});
So with the file path associations set correctly, doing a steal build, it will properly include the dependencies within the build file

Viewing all articles
Browse latest Browse all 3491

Trending Articles