Skip to content

Commit

Permalink
Auto-merge for PR #236 via VersionBot
Browse files Browse the repository at this point in the history
fix(package): Fix prebuild script being run on build
  • Loading branch information
resin-io-modules-versionbot[bot] authored Dec 12, 2017
2 parents 16cc3cf + 4616211 commit f1bef96
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).

## v5.2.10 - 2017-12-12

* Fix(package): Fix prebuild script being run on build #236 [Jonas Hermsmeier]

## v5.2.9 - 2017-12-09

* Fix: Remove the final usage of perl from darwin.sh #238 [Andrew Scheller]
Expand Down
2 changes: 1 addition & 1 deletion ci/prebuild-publish.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

if %APPVEYOR_REPO_BRANCH% == master (
if %GITHUB_TOKEN% neq "" (
npm run prebuild -- -u %GITHUB_TOKEN%
npm run prebuild-release -- -u %GITHUB_TOKEN%
)
)
2 changes: 1 addition & 1 deletion ci/prebuild-publish.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

if [[ $GITHUB_TOKEN ]]; then
npm run prebuild -- -u "$GITHUB_TOKEN"
npm run prebuild-release -- -u "$GITHUB_TOKEN"
fi
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drivelist",
"version": "5.2.9",
"version": "5.2.10",
"description": "List all connected drives in your computer, in all major operating systems",
"main": "lib/drivelist.js",
"homepage": "https://github.com/resin-io-modules/drivelist",
Expand Down Expand Up @@ -29,7 +29,7 @@
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"install": "prebuild-install || node-gyp rebuild",
"prebuild": "prebuild --all --strip"
"prebuild-release": "prebuild --all --strip"
},
"bin": {
"drivelist-darwin": "scripts/darwin.sh",
Expand Down

0 comments on commit f1bef96

Please sign in to comment.