Document all accepted parameters
Documentation contains only
fury.parse({source}, function(err, result) {
console.log(result.api.title);
});
and every time I want to use Fury I have to read code to learn what are the other options, such as generateSourceMap, etc.
Please can you provide me the docker command used to spin up the container too? Is the project correctly mounted?
Thanks for your help. What I did : 1- docker run 984e88feb6cb container 2- docker exec -it 984e88feb6cb /bin/bash 3- copying the project inside the container . 4- run emconfigure ./configure
I suspect that the project is not correctly mounted/copied. Can you try running it by:
docker run --rm -v $(pwd):/src -ti apiaryio/emcc:1.37 /bin/bash and then inside the container run the configure?
The project needs to be under the /src directory inside the container. The above command mounts the current directory (the one with project to be build) to /src inside the container.