Skip to content

Commit

Permalink
Merge branch 'master' into async-if-each
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ authored Sep 13, 2023
2 parents 8cb6c35 + 1895333 commit 76d0114
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: blaze
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
2 changes: 1 addition & 1 deletion packages/blaze-hot/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Package.describe({
Package.onUse(function (api) {
api.use('modules@0.16.0');
api.use('ecmascript@0.15.1');
api.use('blaze@2.6.0');
api.use('blaze@2.7.1');
api.use('templating-runtime@1.6.0');
api.use('hot-module-replacement@0.2.0', { weak: true });

Expand Down
2 changes: 1 addition & 1 deletion packages/blaze-html-templates/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Package.describe({
Package.onUse(function(api) {
api.imply([
// A library for reactive user interfaces
'blaze@2.5.0',
'blaze@2.7.1',

// Compile .html files into Blaze reactive views
'templating@1.4.1'
Expand Down
4 changes: 2 additions & 2 deletions packages/templating-runtime/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ Package.onUse(function (api) {
// Blaze, so anybody using templating (eg apps) need to implicitly use
// 'meteor' and 'blaze'.
api.use([
'blaze@2.6.1',
'blaze@2.7.1',
'spacebars@1.2.1',
'ecmascript@0.15.1'
]);
api.imply([
'meteor@1.10.0',
'blaze@2.6.1',
'blaze@2.7.1',
'spacebars@1.2.1'
], 'client');

Expand Down

0 comments on commit 76d0114

Please sign in to comment.