forward / sql-parser

A SQL parser written in pure JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

True source for this project?

nolanlawson opened this issue · comments

Hey, quick question - you mention "the coffeescript project" and also JISON. So is there a source language file that you used to generate the coffeescript/javascript? Interested in maybe continuing this project, but the code looks generated, so I'm not sure where to start.

The coffeescript code found in /src is the source of the project. It's compiled into the JS source in /lib via cake tasks.

After changing the coffeescript source code you should able able to run ./node_modules/.bin/cake build to rebuild all the JS code.

Hope that helps.

OK, thanks!