-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
58 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Changelog | ||
|
||
## 1.0.0 | ||
- Released. | ||
|
||
## 0.6.1 | ||
- Typos | ||
- "-v" now quits after printing the version number. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
default: zip | ||
|
||
|
||
# Create executables | ||
dezogserialif: | ||
pkg out/main.js -o dezogserialinterface -t node12-linux-x64,node12-macos-x64,node12-win-x64 | ||
|
||
# Create zip file | ||
zip: dezogserialinterface-macos.zip dezogserialinterface-win.zip dezogserialinterface-linux.zip | ||
|
||
dezogserialinterface-macos.zip: dezogserialif | ||
# macos zip | ||
rm -f dezogserialinterface-macos.zip | ||
# Copy node_module and use as new zip file | ||
cp bin/node_modules-macos.zip dezogserialinterface-macos.zip | ||
# Add the program | ||
zip dezogserialinterface-macos.zip dezogserialinterface-macos | ||
|
||
dezogserialinterface-win.zip: dezogserialif | ||
# win zip | ||
rm -f dezogserialinterface-win.zip | ||
# Copy node_module and use as new zip file | ||
cp bin/node_modules-win.zip dezogserialinterface-win.zip | ||
# Add the program | ||
zip dezogserialinterface-win.zip dezogserialinterface-win.exe | ||
|
||
dezogserialinterface-linux.zip: dezogserialif | ||
# linux zip | ||
rm -f dezogserialinterface-linux.zip | ||
# Copy node_module and use as new zip file | ||
#cp bin/node_modules-linux.zip dezogserialinterface-linux.zip | ||
# Add the program | ||
zip dezogserialinterface-linux.zip dezogserialinterface-linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters