-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #449 from Meteor-Community-Packages/fix-bypasscoll…
…ection2 Make compatible with the new RC
- Loading branch information
Showing
10 changed files
with
547 additions
and
641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Package.describe({ | |
name: 'aldeed:collection2', | ||
summary: | ||
'Automatic validation of Meteor Mongo insert and update operations on the client and server', | ||
version: '4.0.1', | ||
version: '4.0.2', | ||
documentation: '../../README.md', | ||
git: 'https://github.com/aldeed/meteor-collection2.git' | ||
}); | ||
|
@@ -16,14 +16,14 @@ Npm.depends({ | |
}); | ||
|
||
Package.onUse(function (api) { | ||
api.versionsFrom(['1.12.1', '2.3', '3.0-beta.0']); | ||
api.versionsFrom(['1.12.1', '2.3', '3.0-rc.4']); | ||
api.use('mongo'); | ||
api.imply('mongo'); | ||
api.use('minimongo'); | ||
api.use('ejson'); | ||
api.use('raix:[email protected]'); | ||
api.use('ecmascript'); | ||
api.use('aldeed:[email protected] || 1.13.1'); | ||
api.use('raix:[email protected]'); | ||
api.use('aldeed:[email protected] || 2.0.0-beta300.0'); | ||
|
||
api.addFiles(['./collection2.js']); | ||
|
||
|
@@ -34,8 +34,9 @@ Package.onUse(function (api) { | |
}); | ||
|
||
Package.onTest(function (api) { | ||
api.versionsFrom(['1.12.1', '2.3', '3.0-rc.4']); | ||
api.use([ | ||
'meteortesting:[email protected]beta300.0', | ||
'aldeed:[email protected].1' | ||
]) | ||
}); | ||
'meteortesting:[email protected]rc.1', | ||
'aldeed:[email protected].2' | ||
]); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,25 +4,25 @@ | |
# 'meteor add' and 'meteor remove' will edit this file for you, | ||
# but you can also edit it by hand. | ||
|
||
[email protected]beta300.0 # Packages every Meteor app needs to have | ||
[email protected]beta300.0 # The database Meteor supports right now | ||
[email protected]beta300.0 # Reactive variable for tracker | ||
[email protected]rc300.4 # Packages every Meteor app needs to have | ||
[email protected]rc300.4 # The database Meteor supports right now | ||
[email protected]rc300.4 # Reactive variable for tracker | ||
jquery # Helpful client-side library | ||
[email protected].3-beta300.0 # Meteor's client-side reactive programming library | ||
[email protected].4-rc300.4 # Meteor's client-side reactive programming library | ||
|
||
[email protected]beta300.0 # CSS minifier run for production mode | ||
[email protected]beta300.0 # JS minifier run for production mode | ||
[email protected]beta300.0 # ECMAScript 5 compatibility for older browsers. | ||
[email protected].8-beta300.0 # Enable ECMAScript2015+ syntax in app code | ||
[email protected]beta300.0 # Server-side component of the `meteor shell` command | ||
[email protected]rc300.4 # CSS minifier run for production mode | ||
[email protected]rc300.4 # JS minifier run for production mode | ||
[email protected]rc300.4 # ECMAScript 5 compatibility for older browsers. | ||
[email protected].9-rc300.4 # Enable ECMAScript2015+ syntax in app code | ||
[email protected]rc300.4 # Server-side component of the `meteor shell` command | ||
|
||
[email protected]beta300.0 # Publish all data to the clients (for prototyping) | ||
[email protected]beta300.0 # Allow all DB writes from clients (for prototyping) | ||
[email protected]rc300.4 # Publish all data to the clients (for prototyping) | ||
[email protected]rc300.4 # Allow all DB writes from clients (for prototyping) | ||
|
||
underscore@1.0.14-beta300.0 | ||
[email protected]beta300.0 | ||
underscore@1.6.2-rc300.4 | ||
[email protected]rc300.4 | ||
|
||
aldeed:simple-schema | ||
aldeed:[email protected].0 | ||
aldeed:simple-schema@2.0.0-beta300.0 | ||
aldeed:[email protected].2-beta.2 | ||
meteortesting:[email protected] | ||
meteortesting:[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[email protected]beta.0 | ||
[email protected]rc.4 |
Oops, something went wrong.