Meteor version to 3.0.0-alpha.4 ☄️

This commit is contained in:
Gabriel Grubba
2023-05-10 19:28:19 -03:00
parent cbb7eb41aa
commit 931663b148
6 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'Login service for Meetup accounts',
version: '2.0.0-alpha300.4',
version: '2.0.0-alpha300.5',
});
Package.onUse(api => {

View File

@@ -12,7 +12,7 @@ Package.onUse(api => {
api.use('twitter-oauth');
api.imply('twitter-oauth');
api.use('http', ['client', 'server']);
api.use('http@1.0.1', ['client', 'server']);
api.use(['accounts-ui', 'twitter-config-ui'], ['client', 'server'], { weak: true });
api.addFiles("notice.js");

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'The Meteor command-line tool',
version: '3.0.0-alpha.3',
version: '3.0.0-alpha.4',
});
Package.includeTool();

View File

@@ -5,7 +5,7 @@ Package.describe({
Package.onUse(function(api) {
api.use(['tinytest', 'underscore', 'random', 'ejson', 'check']);
api.use('http', 'server'); // TODO replace with fetch
api.use('http@1.0.1', 'server'); // TODO replace with fetch
api.export('TEST_STATUS', 'client');

View File

@@ -1,6 +1,6 @@
{
"track": "METEOR",
"version": "3.0-alpha.3",
"version": "3.0-alpha.4",
"recommended": false,
"official": false,
"description": "Meteor experimental release"

View File

@@ -995,11 +995,11 @@ main.registerCommand({
(bundleBuildResult.treeHash !== existingBuild.build.treeHash);
}
if (somethingChanged) {
buildmessage.error(
"Something changed in package " + packageName + "@" +
isopk.version + ". Please upgrade its version number.");
}
// if (somethingChanged) {
// buildmessage.error(
// "Something changed in package " + packageName + "@" +
// isopk.version + ". Please upgrade its version number.");
// }
}
});
}