Skip to content

Instantly share code, notes, and snippets.

@lgarron
Last active July 16, 2018 18:52
Show Gist options
  • Save lgarron/ae47e62a0df2f0b470b439968d3f749f to your computer and use it in GitHub Desktop.
Save lgarron/ae47e62a0df2f0b470b439968d3f749f to your computer and use it in GitHub Desktop.

JS Cubing

mkdir js-cubing
cd js-cubing

git clone https://github.com/cubing/alg.js       alg
git clone https://github.com/cubing/kpuzzle.js   kpuzzle
git clone https://github.com/cubing/twisty.js    twisty
git clone https://github.com/lgarron/libTemplate libTemplate

# Register each checkout for linking.
cd alg          ; yarn link ; cd -
cd kpuzzle      ; yarn link ; cd -
cd twisty       ; yarn link ; cd -
cd libTemplate  ; yarn link ; cd -

# Link dependency projects
cd kpuzzle     ; yarn link alg         ; cd -
cd twisty      ; yarn link alg kpuzzle ; cd -
cd libTemplate ; yarn link alg         ; cd -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment