Re: [FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-09 Thread Alex Harui
On 6/9/16, 12:53 PM, "Josh Tynjala" wrote: >I didn't know about {project-name}-config.xml. That could be really >useful. >{project-name} would be the name of the main class you pass to the >compiler >right, so if I had HelloWorld.as, it would be HelloWorld-config.xml? Yes. In flex-sdk, in the

Re: [FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-09 Thread Josh Tynjala
I didn't know about {project-name}-config.xml. That could be really useful. {project-name} would be the name of the main class you pass to the compiler right, so if I had HelloWorld.as, it would be HelloWorld-config.xml? - Josh On Thu, Jun 9, 2016 at 12:47 PM, Alex Harui wrote: > > > On 6/9/16,

Re: [FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-09 Thread Alex Harui
On 6/9/16, 9:47 AM, "jude" wrote: >Is it possible to use local config files? So using your example, we could >create a ../src/jquery-cordova-googlemaps-config.xml config in your >project? For sure. You can create bunches of -config.xml files and specify them with -load-config, but you can only

Re: [FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-09 Thread jude
Is it possible to use local config files? So using your example, we could create a ../src/jquery-cordova-googlemaps-config.xml config in your project? On Thu, Jun 9, 2016 at 10:22 AM, Josh Tynjala wrote: > It occurred to me too that a separate SWC for browser APIs would make > sense, since Node

Re: [FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-09 Thread Josh Tynjala
It occurred to me too that a separate SWC for browser APIs would make sense, since Node should only need a subset of JS types from js.swc. I think it's a good idea. - Josh On Thu, Jun 9, 2016 at 8:17 AM, Alex Harui wrote: > > > On 6/9/16, 4:25 AM, "Harbs" wrote: > > >Nice. > > > >This should m

Re: [FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-09 Thread Alex Harui
On 6/9/16, 4:25 AM, "Harbs" wrote: >Nice. > >This should make things much easier. Good direction! Thanks. There are some limitations because the naming scheme is one-dimensional. For example, I did not create a cordova-config.xml because you might actually use Jquery as the UI framework in a

Re: [FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-09 Thread Harbs
Nice. This should make things much easier. Good direction! On Jun 8, 2016, at 12:34 PM, Alex Harui wrote: > Hi, > > I just pushed changes to create more named configs for FlexJS. I don't > know how many folks were aware, but named configs can be used to more > easily switch defaults at compil

[FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-08 Thread Alex Harui
Hi, I just pushed changes to create more named configs for FlexJS. I don't know how many folks were aware, but named configs can be used to more easily switch defaults at compile time. If you've ever built both Web and AIR/Mobile apps, you were using named configs whether you knew it or not. Th