Skip to content

Commit

Permalink
Temporary fix for bug nodejs/node-gyp#2713
Browse files Browse the repository at this point in the history
  • Loading branch information
jarek-foksa committed Sep 27, 2022
1 parent 5eba768 commit 793f279
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "local-fonts-manager",
"version": "0.9.2",
"version": "0.9.3",
"description": "Access local system fonts from Node.js and Electron",
"dependencies": {
"node-addon-api": "5.0.0"
Expand All @@ -9,9 +9,9 @@
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "node-gyp configure && node-gyp build",
"rebuild": "node-gyp rebuild",
"install": "node-gyp rebuild"
"install": "node-gyp configure && node-gyp build && rm build/node_gyp_bins/python3",
"build": "node-gyp configure && node-gyp build && rm build/node_gyp_bins/python3",
"rebuild": "node-gyp clean && node-gyp configure && node-gyp build && rm build/node_gyp_bins/python3"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 793f279

Please sign in to comment.