From 4bda3804db196adb156a310c5c4a169c19bc5383 Mon Sep 17 00:00:00 2001 From: Valentin Funk Date: Fri, 16 Feb 2018 13:05:41 +0100 Subject: [PATCH] fix: don't include binaries in build --- .gmodignore | 3 ++- build.js | 13 +------------ 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/.gmodignore b/.gmodignore index 85de3c42..e3a6770d 100644 --- a/.gmodignore +++ b/.gmodignore @@ -17,4 +17,5 @@ README.md changelog_footer_template.hbs wercker.yml bin/ -bin/* \ No newline at end of file +bin/* +sync.ps1 \ No newline at end of file diff --git a/build.js b/build.js index 68113e0d..6b8a85ac 100644 --- a/build.js +++ b/build.js @@ -50,16 +50,5 @@ Check Installation, Guide and Developer.pdf for more information.`) } if (require.main === module) { - // module.exports() - function fib(n, cont = x => x) { - if (n <= 1) return cont(n); - return fib( - n - 2, - n2 => fib( - n - 1, - n1 => cont(n2 + n1) - ) - ); - } - console.log(fib(1000000)) + module.exports() }