api-elements.js icon indicating copy to clipboard operation
api-elements.js copied to clipboard

Document all accepted parameters

Open honzajavorek opened this issue 9 years ago • 0 comments

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.

honzajavorek avatar Jun 07 '16 11:06 honzajavorek

Please can you provide me the docker command used to spin up the container too? Is the project correctly mounted?

w-vi avatar Aug 21 '17 07:08 w-vi

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

yong86 avatar Aug 30 '17 22:08 yong86

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?

w-vi avatar Aug 31 '17 07:08 w-vi

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.

w-vi avatar Aug 31 '17 07:08 w-vi