diff options
author | Fedor Indutny <fedor@indutny.com> | 2016-06-06 17:16:44 -0400 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2016-06-06 17:16:44 -0400 |
commit | 65ee3b519cfdce417363b9281c18a3ada5f16505 (patch) | |
tree | 089da34e6daddd98674b95a2bc56011249351c61 | |
parent | f19bb5ca2af907e02eb8cad58b4d59d9ceb194aa (diff) | |
download | uv_link_t-65ee3b519cfdce417363b9281c18a3ada5f16505.tar.gz |
npm: add binding.gyp to fix travis
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | binding.gyp | 4 |
2 files changed, 5 insertions, 0 deletions
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)"}], +} |