Skip to content

Commit

Permalink
blaze to version 2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Grubba27 committed Mar 14, 2024
1 parent f223baa commit d513757
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions packages/blaze/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'blaze',
summary: "Meteor Reactive Templating library",
version: '2.9.0-beta.0',
version: '2.9.0',
git: 'https://github.com/meteor/blaze.git'
});

Expand All @@ -27,8 +27,8 @@ Package.onUse(function (api) {
'Handlebars'
]);

api.use('[email protected]-beta.0');
api.imply('[email protected]-beta.0');
api.use('[email protected]');
api.imply('[email protected]');

api.addFiles([
'preamble.js'
Expand Down
4 changes: 2 additions & 2 deletions packages/htmljs/.versions
2 changes: 1 addition & 1 deletion packages/htmljs/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'htmljs',
summary: "Small library for expressing HTML trees",
version: '1.2.1-beta.0',
version: '1.2.1',
git: 'https://github.com/meteor/blaze.git'
});

Expand Down
4 changes: 2 additions & 2 deletions packages/spacebars-tests/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'spacebars-tests',
summary: "Additional tests for Spacebars",
version: '1.4.0-beta.0',
version: '1.4.0',
git: 'https://github.com/meteor/blaze.git'
});

Expand All @@ -24,7 +24,7 @@ Package.onTest(function (api) {

api.use([
'[email protected]',
'[email protected]-beta.0'
'[email protected]'
]);
api.use('[email protected]', 'client');

Expand Down
6 changes: 3 additions & 3 deletions packages/spacebars/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'spacebars',
summary: "Handlebars-like template language for Meteor",
version: '1.6.0-beta.0',
version: '1.6.0',
git: 'https://github.com/meteor/blaze.git'
});

Expand All @@ -19,8 +19,8 @@ Package.onUse(function (api) {

api.export('Spacebars');

api.use('[email protected]-beta.0');
api.use('[email protected]-beta.0');
api.use('[email protected]');
api.use('[email protected]');

api.addFiles([
'spacebars-runtime.js'
Expand Down

0 comments on commit d513757

Please sign in to comment.