From 02e004b3c715686e17520f0a9cdb1288cec73bb8 Mon Sep 17 00:00:00 2001 From: Jonas Hermsmeier Date: Tue, 17 Oct 2017 15:44:03 +0200 Subject: [PATCH 1/2] chore(scripts): Also prebuild x86 on Windows and Linux Change-Type: patch --- scripts/prebuild-publish.bat | 3 ++- scripts/prebuild-publish.sh | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/scripts/prebuild-publish.bat b/scripts/prebuild-publish.bat index e5233cb..0513978 100755 --- a/scripts/prebuild-publish.bat +++ b/scripts/prebuild-publish.bat @@ -2,6 +2,7 @@ if %APPVEYOR_REPO_BRANCH% == master ( if %GITHUB_TOKEN% neq "" ( - npm run prebuild -- -u %GITHUB_TOKEN% + npm run prebuild -- --arch x64 -u %GITHUB_TOKEN% + npm run prebuild -- --arch x86 -u %GITHUB_TOKEN% ) ) diff --git a/scripts/prebuild-publish.sh b/scripts/prebuild-publish.sh index 44ee749..69d7d67 100755 --- a/scripts/prebuild-publish.sh +++ b/scripts/prebuild-publish.sh @@ -1,5 +1,10 @@ #!/bin/bash +PLATFORM=$(node -p process.platform) + if [[ $GITHUB_TOKEN ]]; then - npm run prebuild -- -u "$GITHUB_TOKEN" + npm run prebuild -- --arch x64 -u "$GITHUB_TOKEN" + if [[ $PLATFORM == "linux" ]]; then + npm run prebuild -- --arch x86 -u "$GITHUB_TOKEN" + fi fi From 0e4f05d730310bc245c53d3337b10b7ef6406075 Mon Sep 17 00:00:00 2001 From: "resin-io-modules-versionbot[bot]" Date: Wed, 18 Oct 2017 16:35:57 +0000 Subject: [PATCH 2/2] v1.3.4 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3183234..556e656 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/). +## v1.3.4 - 2017-10-18 + +* Chore(scripts): Also prebuild x86 on Windows and Linux #57 [Jonas Hermsmeier] + ## v1.3.3 - 2017-10-17 * Upgrade(package): Bump dependencies #56 [Jonas Hermsmeier] diff --git a/package.json b/package.json index 0a43633..b39dcde 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mountutils", - "version": "1.3.3", + "version": "1.3.4", "main": "index.js", "description": "Cross platform mount related utilities", "homepage": "https://github.com/resin-io-modules/mountutils",