Skip to content

Commit

Permalink
suppress fetch warning (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
massimocandela committed Jan 7, 2024
1 parent 75331f8 commit bb0aee2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ npm ci --silent

npm run compile

./node_modules/.bin/pkg ./package.json --targets node18-win-x64 --output bin/geofeed-finder-win-x64 --loglevel=error
./node_modules/.bin/pkg ./package.json --options "no-warnings,max-old-space-size=2048" --targets node18-win-x64 --output bin/geofeed-finder-win-x64 --loglevel=error

./node_modules/.bin/pkg ./package.json --targets node18-linux-x64 --output bin/geofeed-finder-linux-x64 --loglevel=error
./node_modules/.bin/pkg ./package.json --options "no-warnings,max-old-space-size=2048" --targets node18-linux-x64 --output bin/geofeed-finder-linux-x64 --loglevel=error

./node_modules/.bin/pkg ./package.json --targets node18-macos-x64 --output bin/geofeed-finder-macos-x64 --loglevel=error
./node_modules/.bin/pkg ./package.json --options "no-warnings,max-old-space-size=2048" --targets node18-macos-x64 --output bin/geofeed-finder-macos-x64 --loglevel=error

echo "--> Geofeed finder compiled in bin/"

0 comments on commit bb0aee2

Please sign in to comment.