Re: [FlexJS] Using externs swc, how to specify js path

2016-04-01 Thread Michael Schmalle
BTW I meant 20 seconds 80 was a typo. Yeah I had mentioned that to Josh about the closure library, he said he might do something about just copying base.js if using jsc. Mike On Fri, Apr 1, 2016 at 10:47 AM, Alex Harui wrote: > I think jsc (and for sure mxmljsc) have both a compilation and a >

Re: [FlexJS] Using externs swc, how to specify js path

2016-04-01 Thread Alex Harui
I think jsc (and for sure mxmljsc) have both a compilation and a "publishing" phase. You could be seeing the effects of the publishing phase which has not been optimized at all. The mxmljsc publisher copies the entire Google Closure Library into your bin/js-debug folder, and in my unscientific te

Re: [FlexJS] Using externs swc, how to specify js path

2016-04-01 Thread Alex Harui
Way cool! On 4/1/16, 1:13 AM, "omup...@gmail.com on behalf of OmPrakash Muppirala" wrote: >That worked!! > >FalconJX + AngularJS + Angular Material = unbelievable! > >Will post some examples soon :-) > >Thanks, >Om > >On Thu, Mar 31, 2016 at 7:51 PM, Josh Tynjala >wrote: > >> Yep, you need to

Re: [FlexJS] Using externs swc, how to specify js path

2016-04-01 Thread Michael Schmalle
What are your compile times? I was testing in IDEA and it seemed like 80 seconds was as fast as I could get a full compile with jsc and a 1 class project. I know with Randori compiler I had it conditionally compiling, there has got to be a way to conditionally compile this JS, that is the only thi

Re: [FlexJS] Using externs swc, how to specify js path

2016-04-01 Thread OK
it and looking forward to the examples :-) Thanks, Olaf -- View this message in context: http://apache-flex-development.2333347.n4.nabble.com/FlexJS-Using-externs-swc-how-to-specify-js-path-tp52100p52116.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [FlexJS] Using externs swc, how to specify js path

2016-04-01 Thread OmPrakash Muppirala
That worked!! FalconJX + AngularJS + Angular Material = unbelievable! Will post some examples soon :-) Thanks, Om On Thu, Mar 31, 2016 at 7:51 PM, Josh Tynjala wrote: > Yep, you need to use -external-library-path instead. An externs SWC only > defines the APIs for compile-time checks. The re

Re: [FlexJS] Using externs swc, how to specify js path

2016-03-31 Thread Josh Tynjala
Yep, you need to use -external-library-path instead. An externs SWC only defines the APIs for compile-time checks. The real code needs to come from a

Re: [FlexJS] Using externs swc, how to specify js path

2016-03-31 Thread Alex Harui
Looks like angular is on the regular -library-path not the -external-library-path -Alex On 3/31/16, 7:32 PM, "OmPrakash Muppirala" wrote: >How do I specify the path to a js file to the compiler? Is there a >compiler var I can set? > > >I am trying add support for AngularJS/Angular Material Des

[FlexJS] Using externs swc, how to specify js path

2016-03-31 Thread OmPrakash Muppirala
How do I specify the path to a js file to the compiler? Is there a compiler var I can set? I am trying add support for AngularJS/Angular Material Design using FalconJX. I am building angular.swc and angularmaterial.swc using Josh's dts2as [1] tool. When I am trying to build an app using FDT li