Skip to content

Commit

Permalink
Merge pull request #394 from StorytellerCZ/feature/add-missing-depend…
Browse files Browse the repository at this point in the history
…ency

Add missing ddp dependency
  • Loading branch information
StorytellerCZ committed May 5, 2024
2 parents 150fb4f + 7a6131e commit 624c026
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v3.6.3

* Added missing dependency on the `ddp` package [@storytellercz](https://github.com/sponsors/StorytellerCZ)
* Updated Blaze weak dependency to v2.9 [@storytellercz](https://github.com/sponsors/StorytellerCZ)

## v3.6.2

* Fixed TypeScript definition to play nice with Meteor definition [#389](https://github.com/Meteor-Community-Packages/meteor-roles/pull/389) [@bruceborrett](https://github.com/sponsors/bruceborrett)
Expand Down
7 changes: 4 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Package.describe({
summary: 'Authorization package for Meteor',
version: '3.6.2',
version: '3.6.3',
git: 'https://github.com/Meteor-Community-Packages/meteor-roles.git',
name: 'alanning:roles'
})
Expand All @@ -17,12 +17,13 @@ Package.onUse(function (api) {
'accounts-base',
'tracker',
'mongo',
'check'
'check',
'ddp'
], both)

api.use('zodern:types@1.0.11')

api.use(['blaze@2.7.1'], 'client', { weak: true })
api.use(['blaze@2.9.0'], 'client', { weak: true })

api.export('Roles')

Expand Down

0 comments on commit 624c026

Please sign in to comment.