Skip to content

Commit

Permalink
Minimal Meteor to 2.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bero committed Feb 19, 2024
1 parent 2983b92 commit 78e6353
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
meteor: [2.3.1, 2.6.1, 2.7.3, 2.8.1, 2.9.1, 2.12]
meteor: [2.8.1, 2.9.1, 2.12]

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const npmPackages = {
Package.onUse(function (api) {
Npm.depends(npmPackages);

api.versionsFrom(['2.3.1', '2.6.1', '2.7.3', '2.8.1', '2.9.1', '3.0-beta.0']);
api.versionsFrom(['2.8.1', '2.9.1', '3.0-beta.0']);

var packages = [
'ecmascript',
Expand All @@ -29,7 +29,7 @@ Package.onUse(function (api) {
'check',
'reactive-var',
'zodern:types',
'mongo@2.0.0-beta300.0',
'mongo',

// https://github.com/Meteor-Community-Packages/meteor-collection-hooks/
'matb33:[email protected]',
Expand Down Expand Up @@ -72,13 +72,13 @@ Package.onTest(function (api) {
'reywood:[email protected]',
'dburles:[email protected]',
// 'herteby:[email protected]',
'mongo@2.0.0-beta300.0',
'mongo',
];

api.use(packages);
api.use('tracker');

// api.use(['meteortesting:mocha']);
api.use(['meteortesting:mocha']);

// LINKS
api.addFiles('lib/links/tests/main.js', 'server');
Expand Down

0 comments on commit 78e6353

Please sign in to comment.