Skip to content

Commit

Permalink
electron-5: Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
KoenLav committed Aug 8, 2019
1 parent 934941c commit a59f1dd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit a59f1dd

Please sign in to comment.