Skip to content

Commit d2042e7

Browse files
committed
Fix .lib not found error in linux systems
1 parent cd716eb commit d2042e7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules
22
build
33
.vscode
4-
tsbuild
4+
tsbuild
5+
*.tgz

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "napi_thread_safe_promise",
3-
"version": "1.0.10",
3+
"version": "1.0.11",
44
"description": "C++ napi thread safe promises",
55
"main": "build/index.js",
66
"scripts": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export const include = `"${__dirname}"/../src`;
2-
export const libraries = `"${__dirname}/Release/napi_thread_safe_promise"`;
2+
export const libraries = `"${__dirname}/Release/napi_thread_safe_promise.lib"`;

0 commit comments

Comments
 (0)