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
11 changes: 3 additions & 8 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,10 @@
"targets": [
{
"target_name": "<(module_name)",
"cflags!": [ "-fno-exceptions" ],
"cflags_cc!": [ "-fno-exceptions" ],
"xcode_settings": { "GCC_ENABLE_CPP_EXCEPTIONS": "YES",
"xcode_settings": {
"CLANG_CXX_LIBRARY": "libc++",
"MACOSX_DEPLOYMENT_TARGET": "10.7",
},
"msvs_settings": {
"VCCLCompilerTool": { "ExceptionHandling": 1 },
},
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")"],
"conditions": [
Expand All @@ -40,7 +35,7 @@
},
{
"dependencies": [
"<!(node -p \"require('node-addon-api').gyp\")",
"<!(node -p \"require('node-addon-api').targets\"):node_addon_api_except",
"deps/sqlite3.gyp:sqlite3"
]
}
Expand All @@ -52,7 +47,7 @@
"src/node_sqlite3.cc",
"src/statement.cc"
],
"defines": [ "NAPI_VERSION=<(napi_build_version)", "NAPI_DISABLE_CPP_EXCEPTIONS=1" ]
"defines": [ "NAPI_VERSION=<(napi_build_version)" ]
}
]
}
6 changes: 5 additions & 1 deletion docs/DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ This project uses [npm version](https://docs.npmjs.com/cli/v10/commands/npm-vers
- Upload them as release assets
- Publish the package to npm

3. ** Create GitHub Release from tag
3. ** Edit the generated Pre-release
- select "Generate release notes"
- uncheck "Set as pre-release"
- check "Set as latest release" if it is
- click "Update Releasse

### Version format

Expand Down
Loading