Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent node-addon-api from being called during installation #8

Merged
merged 2 commits into from
Jan 12, 2025
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
#### 2.0.1 (2025-01-12)

##### Fixes

* Prevent node-addon-api from being called during installation ([856468f](https://github.com/primno/dpapi/commit/856468f436d3c60e79353993fb76f0dc039775ee))

#### 2.0.0 (2025-01-01)

##### Features

* Add support for arm64 ([03707dd](https://github.com/primno/dpapi/commit/03707dd007a60f4f4abfc423f781e503edbcc92e))
* Add platform support flag ([755cb93](https://github.com/primno/dpapi/commit/755cb9326c8254861859aa0219d49fa06aa421d5))


#### 1.1.1 (2023-03-25)

##### Chores
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primno/dpapi",
"version": "2.0.0",
"version": "2.0.1",
"description": "Pre-built version of DPAPI (Data Protection API of Windows). Encrypt and decrypt data.",
"main": "dist/index.js",
"files": [
Expand All @@ -12,7 +12,7 @@
],
"gypfile": true,
"scripts": {
"install": "node-gyp-build",
"install": "exit 0",
"build": "tsc && npm run prebuild",
"rebuild": "npm run install --build-from-source",
"prebuild": "prebuildify --napi --strip --arch x64 && prebuildify --napi --strip --arch arm64",
Expand Down