Skip to content

Commit

Permalink
threw out all fiber methods, renamed new methods
Browse files Browse the repository at this point in the history
  • Loading branch information
bratelefant committed Jan 17, 2024
1 parent fac13c3 commit 55259c0
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 871 deletions.
4 changes: 2 additions & 2 deletions cursor.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ export class FilesCursor {
* Useful when using in {{#each FilesCursor#each}}...{{/each}} block template helper
* @returns {[FileCursor]}
*/
each() {
return this.map((file) => {
async each() {
return this.mapAsync((file) => {
return new FileCursor(file, this._collection);
});
}
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Package.describe({
});

Package.onUse((api) => {
api.versionsFrom('1.9');
api.versionsFrom('2.14');
api.use('webapp', 'server');
api.use(['reactive-var', 'tracker', 'ddp-client'], 'client');
api.use(['mongo', 'check', 'random', 'ecmascript', 'fetch', 'ostrio:cookies@2.7.2'], ['client', 'server']);
Expand Down
Loading

0 comments on commit 55259c0

Please sign in to comment.