Paulo Lopes

Results 282 comments of Paulo Lopes

Lets focus on this for the next iteration now that we also have loom close

This PR looks good to me, however I think we should try to avoid using reflection. This isn't just for the PR itself but also on the existing code. Let's...

I've noticed that 've been missing some artifacts during the release. I'm working on the documentation of the process, but for now assume you can do anything like this (using...

@chefhoobajoob I've started documenting the generation process here: https://github.com/reactiverse/es4x/commit/4c9df8657ba8beb60f384ce99111689cce11484e#diff-2586b42924f021fe14c65861d3404f4b4015ee68c6592ce5633fee850940b470

If you look at the manual I've started, there's a lot of system properties in the maven snippet I've added. You will need to pass those environmental variables to the...

@chefhoobajoob can you share a simple hello world with your gradle script? I think we can improve it to be an easy template to generate es4x packages.

Hi, this is a very interesting topic. I've followed deno since its announce 2y ago at jsconf. There are a couple of things I like (using module standards for example)...

@luboslives I just spent a few minutes looking into java security policies, trying to remember the days of the applets ;-) So I did a quick experiment: ## First create...

A full control can be achieved with a strong policy: ``` grant codeBase "file:node_modules/.lib/*" { permission java.io.FilePermission "", "read"; permission java.io.FilePermission "/tmp/-", "read,write,delete"; permission java.lang.reflect.ReflectPermission "newProxyInPackage.io.netty.channel"; permission java.lang.reflect.ReflectPermission "suppressAccessChecks"; permission...

@luboslives this commit introduces a small extra command `security-manager` that creates a secure `security.policy` file in your project. https://github.com/reactiverse/es4x/commit/c9e64d4c55a497ab67be1fff9038982428900915 If the file is present, launching the application, the launchers, will...