Skip to content
David Nolen edited this page Nov 16, 2013 · 14 revisions

Creating patches

Make a branch off master and write the code for the patch and commit it. Please squash multiple commits into a single commit. Then produce the patch with the following:

git format-patch master --stdout > cljs_ticket_number.patch

Testing patches

In order to test ClojureScript patches in your own project, apply the patch to a local clone of the ClojureScript repo. Run script/build, this will install a version of ClojureScript - note the version number. Change your projects :dependencies to Use this version number and confirm the patch works for you.

Clone this wiki locally