From 65ee3b519cfdce417363b9281c18a3ada5f16505 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Mon, 6 Jun 2016 17:16:44 -0400 Subject: [PATCH] npm: add binding.gyp to fix travis --- .gitignore | 1 + binding.gyp | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 binding.gyp diff --git a/.gitignore b/.gitignore index acd72e3..2064ab1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ test/deps/libuv +build/ tools/gyp out/ gypkg_deps/ diff --git a/binding.gyp b/binding.gyp new file mode 100644 index 0000000..7d25c93 --- /dev/null +++ b/binding.gyp @@ -0,0 +1,4 @@ +# Just for npm +{ + "targets": [{"target_name":"nop","type":"<(library)"}], +}