Skip to content

Commit 70a89a6

Browse files
authored
Make package compatible with 3.0-rc
Make package compatible with 3.0-rc
2 parents 4524a99 + 28484ba commit 70a89a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ Package.describe({
22
name: 'ostrio:autoform-files',
33
summary: 'File upload for AutoForm using ostrio:files',
44
description: 'File upload for AutoForm using ostrio:files',
5-
version: '2.5.1',
5+
version: '2.5.2',
66
git: 'https://github.com/veliovgroup/meteor-autoform-file.git'
77
});
88

99
Package.onUse((api) => {
10-
api.versionsFrom('METEOR@2.0');
10+
api.versionsFrom(['2.0', '3.0-rc.0']);
1111

1212
api.use([
1313
'check',
1414
'ecmascript',
1515
'mongo',
1616
'reactive-var',
1717
'templating@1.4.2',
18-
'aldeed:autoform@7.0.0',
19-
'ostrio:files@2.2.0'
18+
'aldeed:autoform@7.0.0 || 8.0.0-rc',
19+
'ostrio:files@2.2.0 || 3.0.0-beta.6'
2020
], 'client');
2121

2222
api.addFiles([

0 commit comments

Comments
 (0)