Skip to content

Commit

Permalink
Add ddp dependency & update zodern:tyeps
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Jan 2, 2024
1 parent 856e194 commit 0f369f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## v1.8.5
* Fixed `this.ready()` being fired too early [PR](https://github.com/Meteor-Community-Packages/meteor-publish-composite/pull/174) [manueltimita](https://github.com/manueltimita)
* Added `ddp` dependency that is needed for Meteor 3.0 and version support for Meteor `3.0-beta.0` [@storytellercz](https://github.com/sponsors/StorytellerCZ)
* Updated `zodern:types` to v1.0.11 [@storytellercz](https://github.com/sponsors/StorytellerCZ)

## v1.8.4

Expand Down
9 changes: 5 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Package.describe({
name: 'reywood:publish-composite',
summary: 'Publish a set of related documents from multiple collections with a reactive join.',
version: '1.8.5-beta.2',
version: '1.8.6',
git: 'https://github.com/Meteor-Community-Packages/meteor-publish-composite'
})

Expand All @@ -11,14 +11,15 @@ Npm.depends({
})

Package.onUse((api) => {
api.versionsFrom(['1.8.3', '2.8.1', '3.0-alpha.19'])
api.versionsFrom(['1.8.3', '2.8.1', '3.0-beta.0'])
api.use([
'check',
'ecmascript',
'modules',
'logging'
'logging',
'ddp'
], ['server'])
api.use('zodern:types@1.0.10')
api.use('zodern:types@1.0.11')
api.mainModule('lib/publish_composite.js', 'server')
api.addFiles([
'lib/doc_ref_counter.js',
Expand Down

0 comments on commit 0f369f4

Please sign in to comment.