From: Nick Downing Date: Mon, 3 Feb 2020 15:53:21 +0000 (+1100) Subject: Change yarn to pnpm, hackily include my home directory for building X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?p=node_zettair.git;a=commitdiff_plain;h=61c28eced50ec0f8e448339e0c774a4ec9a58c4e Change yarn to pnpm, hackily include my home directory for building --- diff --git a/.gitignore b/.gitignore index edfb991..e9d2a61 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,4 @@ /index.vocab.0 /ndcode-zettair-*.tgz /node_modules -/package-lock.json -/yarn.lock -/yarn-error.log +/pnpm-lock.yaml diff --git a/binding.gyp b/binding.gyp index 84f53b0..9dfa2f8 100644 --- a/binding.gyp +++ b/binding.gyp @@ -3,7 +3,8 @@ { "target_name": "zettair", "sources": ["zettair.cpp"], - "libraries": ["-lzet"] + "include_dirs": ["/home/nick/include"], + "libraries": ["-L/home/nick/lib -lzet"] } ] }