Skip to content

Commit

Permalink
Update dependencies and publish
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Jun 5, 2021
1 parent bd64eab commit d907a3c
Show file tree
Hide file tree
Showing 31 changed files with 201 additions and 197 deletions.
8 changes: 7 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## v.2.4.0, 2021-April-12
## v2.5.0, 2021-June-5

* [#331](https://github.com/meteor/blaze/pull/331) Remove underscore and all of its methods in the code

* Updated dependencies

## v2.4.0, 2021-April-12

* [#313](https://github.com/meteor/blaze/pull/313) Implemented HMR for Blaze

Expand Down
8 changes: 4 additions & 4 deletions packages/blaze-hot/.versions
8 changes: 4 additions & 4 deletions packages/blaze-hot/package.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Package.describe({
name: 'blaze-hot',
summary: "Update files using Blaze's API with HMR",
version: '1.0.0',
version: '1.1.0',
git: 'https://github.com/meteor/blaze.git',
documentation: null,
debugOnly: true
});

Package.onUse(function (api) {
api.use('modules@0.15.0');
api.use('ecmascript@0.14.4');
api.use('blaze@2.4.0');
api.use('modules@0.16.0');
api.use('ecmascript@0.15.1');
api.use('blaze@2.5.0');
api.use('[email protected]');
api.use('[email protected]', { weak: true });

Expand Down
8 changes: 4 additions & 4 deletions packages/blaze-html-templates/package.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
Package.describe({
name: 'blaze-html-templates',
summary: "Compile HTML templates into reactive UI with Meteor Blaze",
version: '1.2.0',
version: '1.2.1',
git: 'https://github.com/meteor/blaze.git'
});

Package.onUse(function(api) {
api.imply([
// A library for reactive user interfaces
'blaze@2.4.0',
'blaze@2.5.0',

// The following packages are basically empty shells that just exist to
// satisfy code checking for the existence of a package. Rest assured that
// they are not adding any bloat to your bundle.
'[email protected]', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0.
'spacebars@1.1.0', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0
'spacebars@1.2.0', // XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0

// Compile .html files into Blaze reactive views
'[email protected].0'
'[email protected].1'
]);
});
10 changes: 5 additions & 5 deletions packages/blaze-tools/package.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
Package.describe({
name: 'blaze-tools',
summary: "Compile-time tools for Blaze",
version: '1.1.1',
version: '1.1.2',
git: 'https://github.com/meteor/blaze.git'
});

Package.onUse(function (api) {
api.use('ecmascript@0.14.4');
api.use('ecmascript@0.15.1');
api.use('[email protected]');

api.export('BlazeTools')
api.export('BlazeTools');
api.mainModule('preamble.js');
});

Package.onTest(function (api) {
api.use('tinytest@1.0.11');
api.use('tinytest@1.1.0');
api.use('ecmascript');

api.use('blaze-tools');
api.use('[email protected].0');
api.use('[email protected].1');

api.addFiles([
'token_tests.js'
Expand Down
24 changes: 12 additions & 12 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.4.0',
version: '2.5.0',
git: 'https://github.com/meteor/blaze.git'
});

Expand All @@ -14,12 +14,12 @@ Npm.depends({

Package.onUse(function (api) {
api.use('[email protected] || 3.0.0', { weak: true }); // should be a weak dep, by having multiple "DOM backends"
api.use('tracker@1.1.0');
api.use('check@1.2.3');
api.use('[email protected].12');
api.use('[email protected].10');
api.use('ordered-dict@1.0.9');
api.use('ecmascript@0.14.4');
api.use('tracker@1.2.0');
api.use('check@1.3.1');
api.use('[email protected].16');
api.use('[email protected].11');
api.use('ordered-dict@1.1.0');
api.use('ecmascript@0.15.1');

api.export([
'Blaze',
Expand Down Expand Up @@ -55,15 +55,15 @@ Package.onUse(function (api) {
});

Package.onTest(function (api) {
api.use('ecmascript@0.14.4')
api.use('tinytest@1.0.11');
api.use('test-helpers@1.0.10');
api.use('ecmascript@0.15.1');
api.use('tinytest@1.1.0');
api.use('test-helpers@1.2.0');
api.use('[email protected] || 3.0.0'); // strong dependency, for testing jQuery backend
api.use('[email protected].10');
api.use('[email protected].11');
api.use('[email protected]');

api.use('blaze');
api.use('[email protected].0'); // for BlazeTools.toJS
api.use('[email protected].2'); // for BlazeTools.toJS
api.use('[email protected]');
api.use('templating');

Expand Down
10 changes: 5 additions & 5 deletions packages/caching-html-compiler/package.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
Package.describe({
name: 'caching-html-compiler',
summary: "Pluggable class for compiling HTML into templates",
version: '1.2.0',
version: '1.2.1',
git: 'https://github.com/meteor/blaze.git'
});

Npm.depends({
'lodash.isempty': '4.4.0'
})
});

Package.onUse(function(api) {
api.use([
'caching-compiler@1.1.7',
'ecmascript@0.14.4'
'caching-compiler@1.2.2',
'ecmascript@0.15.1'
]);

api.export('CachingHtmlCompiler', 'server');

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

api.addFiles([
Expand Down
4 changes: 2 additions & 2 deletions packages/html-tools/.versions
6 changes: 3 additions & 3 deletions packages/html-tools/package.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Package.describe({
name: 'html-tools',
summary: "Standards-compliant HTML tools",
version: '1.1.1',
version: '1.1.2',
git: 'https://github.com/meteor/blaze.git'
});

Package.onUse(function (api) {
api.use('ecmascript@0.14.4');
api.use('ecmascript@0.15.1');
api.use('[email protected]');
api.imply('[email protected]');

Expand All @@ -16,7 +16,7 @@ Package.onUse(function (api) {

Package.onTest(function (api) {
api.use('ecmascript');
api.use('tinytest@1.0.11');
api.use('tinytest@1.1.0');

api.use('html-tools');
api.use('[email protected]');
Expand Down
Loading

0 comments on commit d907a3c

Please sign in to comment.