Skip to content

Commit

Permalink
fix(build): use no explicit versions for core packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jankapunkt committed Apr 15, 2024
1 parent fff28f1 commit 83d5e8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/collection2/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Package.onUse(function (api) {
api.use('minimongo');
api.use('ejson');
api.use('raix:eventemitter@1.0.0');
api.use('ecmascript@0.16.8-alpha300.11');
api.use('ecmascript');
api.use('aldeed:simple-schema@2.0.0-beta300.0 || 1.13.1');

api.addFiles(['./collection2.js']);
Expand All @@ -36,6 +36,6 @@ Package.onUse(function (api) {
Package.onTest(function (api) {
api.use([
'meteortesting:mocha@3.1.0-beta300.0',
'aldeed:collection2@4.0.0-beta.7'
'aldeed:collection2@4.0.1'
])
});

0 comments on commit 83d5e8d

Please sign in to comment.