From a59f1ddb7300b670a634be8527550590c2c02da4 Mon Sep 17 00:00:00 2001 From: Koen Lavrijssen Date: Thu, 8 Aug 2019 12:18:00 +0200 Subject: [PATCH] electron-5: Updated versions --- .travis.yml | 2 +- appveyor.yml | 2 +- package.json | 2 +- tests/integration/prepare.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f4626666..9a774ff9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,7 +26,7 @@ before_install: then meteor --version; else - curl https://install.meteor.com/?release=1.5.4.1 | /bin/sh; + curl https://install.meteor.com/?release=1.8.1 | /bin/sh; fi; fi diff --git a/appveyor.yml b/appveyor.yml index 713f6161..ee84b8ec 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -36,7 +36,7 @@ install: - ps: >- if ($env:test -eq "integration") { if ((Get-Command "meteor" -ErrorAction SilentlyContinue) -eq $null) { - choco install meteor --params "'/RELEASE:1.5.4.1'" + choco install meteor --params "'/RELEASE:1.8.1'" } } - ps: refreshenv diff --git a/package.json b/package.json index 2e4f6579..599d0d78 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "version": "node dist/scripts/propagateVersion.js && git add plugins", "postversion": "npm run publish-all", "postinstall": "node dist/scripts/addToScripts || echo", - "publish-plugins": "(cls || reset) && cd plugins/bundler && (meteor publish --release=METEOR@1.5.4.2) && cd ../watcher && (meteor publish --release=METEOR@1.5.4.2)", + "publish-plugins": "(cls || reset) && cd plugins/bundler && (meteor publish --release=METEOR@1.8.1) && cd ../watcher && (meteor publish --release=METEOR@1.8.1)", "prepublish": "npm run build || echo", "publish-all": "npm run publish-plugins && npm publish", "build": "babel lib --out-dir dist --source-maps inline --copy-files", diff --git a/tests/integration/prepare.js b/tests/integration/prepare.js index 81eb2034..3ace2af2 100644 --- a/tests/integration/prepare.js +++ b/tests/integration/prepare.js @@ -9,7 +9,7 @@ const fs = require('fs'); const testsPath = path.resolve(path.join(__dirname, '..', '..', 'tests')); const testsTmpPath = path.resolve(path.join(testsPath, '.__tmp_int')); -const meteorVersion = '1.5.4.1'; +const meteorVersion = '1.8.1'; shell.config.fatal = true; const appDir = path.join(testsTmpPath, 'test-desktop');