Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ else()
enable_language(ASM)
endif()

set(BARE_ENGINE "github:holepunchto/libjs#e8631d3" CACHE STRING "The JavaScript engine to use")
set(BARE_ENGINE "github:holepunchto/libjs#20eccc3" CACHE STRING "The JavaScript engine to use")

set(BARE_PREBUILDS ON CACHE BOOL "Enable prebuilds for supported third-party dependencies")

Expand All @@ -31,7 +31,7 @@ if(BARE_PREBUILDS AND BARE_ENGINE MATCHES "github:holepunchto/libjs(#|@|$)")
SOURCE qogbhqbcxknrpeotyz7hk4x3mxuf6d9mhb1dxm6ms5sdn6hh1uso
DESTINATION ${PROJECT_SOURCE_DIR}/prebuilds
PREFIX /${target}
CHECKOUT 793
CHECKOUT 806
)

add_library(c++ STATIC IMPORTED GLOBAL)
Expand Down Expand Up @@ -157,7 +157,7 @@ endif()

fetch_package("${BARE_ENGINE}")

fetch_package("github:holepunchto/libnapi#3d7a8eb")
fetch_package("github:holepunchto/libnapi#83aa500")

add_bare_bundle(
bare_bundle
Expand Down
2 changes: 2 additions & 0 deletions src/js.def
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ EXPORTS
js_create_arraybuffer_with_backing_store
js_create_bigint_int64
js_create_bigint_uint64
js_create_bigint_words
js_create_context
js_create_dataview
js_create_date
Expand Down Expand Up @@ -125,6 +126,7 @@ EXPORTS
js_get_undefined
js_get_value_bigint_int64
js_get_value_bigint_uint64
js_get_value_bigint_words
js_get_value_bool
js_get_value_date
js_get_value_double
Expand Down
2 changes: 2 additions & 0 deletions src/napi.def
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ EXPORTS
napi_create_async_work
napi_create_bigint_int64
napi_create_bigint_uint64
napi_create_bigint_words
napi_create_buffer
napi_create_buffer_copy
napi_create_dataview
Expand Down Expand Up @@ -93,6 +94,7 @@ EXPORTS
napi_get_uv_event_loop
napi_get_value_bigint_int64
napi_get_value_bigint_uint64
napi_get_value_bigint_words
napi_get_value_bool
napi_get_value_date
napi_get_value_double
Expand Down