On Fri, 2013-10-11 at 12:58 +0200, Łukasz Mach wrote: > W dniu 11.10.2013 07:37, Kees Bos pisze: > > Currently all examples are in the same output directory. This gives > > naming conflicts (e.g. kitchensink is not working for that reason). > > There are two ways (that I know of) to overcome this: > > > > 1. Put every example in its own output directory > > 2. Build static (monolithic files) and remove the __output__/lib > > directory before building an app. > > How (2) will prevent from doing conflicts?
By removing the lib file before translating the files. All generated js files are placed in the output/lib directory and then included (copied) into the monolithic file. After that, the lib/*.js files are not needed anymore. The removal of the lib directory also ensure that all files are translated (again). With the options for the specific project. -- --- You received this message because you are subscribed to the Google Groups "Pyjs.org Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
