Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
Connoropolous committed Oct 25, 2023
1 parent 51499ea commit fc4243b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@types/node": "20.8.9",
"@types/split": "^1.0.0",
"electron": "20.3.12",
"electron-builder": "24.8.0",
"electron-builder": "24.7.0",
"@electron/notarize": "^2.1.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1"
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"pm2": "^5.1.1"
},
"devDependencies": {
"typescript": "^5.1.6"
"typescript": "^5.1.6",
"electron-builder": "24.8.0"
}
}
8 changes: 4 additions & 4 deletions scripts/copy-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
echo $OSTYPE

if [[ $OSTYPE == 'darwin'* ]]; then
cp electron/node_modules/@lightningrodlabs/electron-holochain/binaries/holochain-runner electron/binaries/holochain-runner
cp node_modules/@lightningrodlabs/electron-holochain/binaries/holochain-runner electron/binaries/holochain-runner
elif [[ $OSTYPE == 'linux-gnu'* ]]; then
cp electron/node_modules/@lightningrodlabs/electron-holochain/binaries/holochain-runner electron/binaries/holochain-runner
cp node_modules/@lightningrodlabs/electron-holochain/binaries/holochain-runner electron/binaries/holochain-runner
elif [[ $OSTYPE == "cygwin" ]]; then
# POSIX compatibility layer and Linux environment emulation for Windows
cp electron/node_modules/@lightningrodlabs/electron-holochain/binaries/holochain-runner.exe electron/binaries/holochain-runner.exe
cp node_modules/@lightningrodlabs/electron-holochain/binaries/holochain-runner.exe electron/binaries/holochain-runner.exe
elif [[ $OSTYPE == "msys" ]]; then
# Lightweight shell and GNU utilities compiled for Windows (part of MinGW)
cp electron/node_modules/@lightningrodlabs/electron-holochain/binaries/holochain-runner.exe electron/binaries/holochain-runner.exe
cp node_modules/@lightningrodlabs/electron-holochain/binaries/holochain-runner.exe electron/binaries/holochain-runner.exe
fi

0 comments on commit fc4243b

Please sign in to comment.