forked from yogiben/meteor-autoform-file
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
__Major changes:__ -⚠️ Minimum required version of meteor is `2.0` -⚠️ Removed `global.Buffer = function () {};` __Changes:__ - 🤝 Compatibility with `[email protected]` - 📦 `[email protected]`, *was `v1.3.2`* - 📦 `ostrio:[email protected]`, *was `v2.0.0`*
- Loading branch information
1 parent
89fef34
commit 3ebfa9f
Showing
3 changed files
with
59 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.github | ||
.gitignore | ||
.npm | ||
.DS_Store | ||
.eslintcache | ||
node_modules | ||
CHANGELOG.md | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
HISTORY.md | ||
LICENCE | ||
LICENSE | ||
README.md |
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,70 +1,70 @@ | ||
aldeed:[email protected] | ||
[email protected].0 | ||
babel-compiler@7.6.0 | ||
[email protected].0 | ||
[email protected].1 | ||
babel-compiler@7.9.0 | ||
[email protected].1 | ||
[email protected] | ||
[email protected] | ||
blaze@2.3.2 | ||
blaze-tools@1.0.10 | ||
blaze@2.6.0 | ||
blaze-tools@1.1.0 | ||
[email protected] | ||
[email protected] | ||
caching-html-compiler@1.1.2 | ||
callback-hook@1.3.0 | ||
caching-html-compiler@1.2.0 | ||
callback-hook@1.4.0 | ||
[email protected] | ||
[email protected] | ||
ddp-client@2.4.0 | ||
ddp-client@2.5.0 | ||
[email protected] | ||
ddp-server@2.3.2 | ||
ddp-server@2.5.0 | ||
[email protected] | ||
[email protected] | ||
dynamic-import@0.6.0 | ||
ecmascript@0.15.0 | ||
ecmascript-runtime@0.7.0 | ||
ecmascript-runtime-client@0.11.0 | ||
ecmascript-runtime-server@0.10.0 | ||
[email protected].1 | ||
dynamic-import@0.7.2 | ||
ecmascript@0.16.2 | ||
ecmascript-runtime@0.8.0 | ||
ecmascript-runtime-client@0.12.1 | ||
ecmascript-runtime-server@0.11.0 | ||
[email protected].2 | ||
[email protected] | ||
[email protected] | ||
html-tools@1.0.11 | ||
htmljs@1.0.11 | ||
[email protected].0 | ||
html-tools@1.1.0 | ||
htmljs@1.1.1 | ||
[email protected].1 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
logging@1.2.0 | ||
meteor@1.9.3 | ||
minimongo@1.6.1 | ||
[email protected].5 | ||
modules@0.16.0 | ||
modules-runtime@0.12.0 | ||
logging@1.3.1 | ||
meteor@1.10.0 | ||
minimongo@1.8.0 | ||
[email protected].8 | ||
modules@0.18.0 | ||
modules-runtime@0.13.0 | ||
momentjs:[email protected] | ||
mongo@1.10.1 | ||
[email protected].2 | ||
mongo@1.15.0 | ||
[email protected].3 | ||
[email protected] | ||
[email protected].7 | ||
npm-mongo@3.8.1 | ||
[email protected].8 | ||
npm-mongo@4.3.1 | ||
[email protected] | ||
[email protected] | ||
ostrio:autoform-files@2.4.0 | ||
ostrio:[email protected].0 | ||
ostrio:files@2.0.0 | ||
promise@0.11.2 | ||
ostrio:autoform-files@2.5.0 | ||
ostrio:[email protected].2 | ||
ostrio:files@2.1.1 | ||
promise@0.12.0 | ||
[email protected] | ||
react-fast-refresh@0.1.0 | ||
react-fast-refresh@0.2.3 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected].0 | ||
socket-stream-client@0.3.1 | ||
spacebars@1.0.15 | ||
spacebars-compiler@1.1.2 | ||
templating@1.3.2 | ||
templating-compiler@1.3.3 | ||
templating-runtime@1.3.2 | ||
templating-tools@1.1.2 | ||
[email protected].1 | ||
socket-stream-client@0.5.0 | ||
spacebars@1.3.0 | ||
spacebars-compiler@1.2.0 | ||
templating@1.4.2 | ||
templating-compiler@1.4.1 | ||
templating-runtime@1.6.0 | ||
templating-tools@1.2.0 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
webapp@1.10.0 | ||
webapp@1.13.1 | ||
[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 |
---|---|---|
|
@@ -2,21 +2,21 @@ Package.describe({ | |
name: 'ostrio:autoform-files', | ||
summary: 'File upload for AutoForm using ostrio:files', | ||
description: 'File upload for AutoForm using ostrio:files', | ||
version: '2.4.0', | ||
version: '2.5.0', | ||
git: 'https://github.com/veliovgroup/meteor-autoform-file.git' | ||
}); | ||
|
||
Package.onUse((api) => { | ||
api.versionsFrom('METEOR@1.9'); | ||
api.versionsFrom('METEOR@2.0'); | ||
|
||
api.use([ | ||
'check', | ||
'ecmascript', | ||
'mongo', | ||
'reactive-var', | ||
'templating@1.3.2', | ||
'templating@1.4.2', | ||
'aldeed:[email protected]', | ||
'ostrio:files@2.0.0' | ||
'ostrio:files@2.1.1' | ||
], 'client'); | ||
|
||
api.addFiles([ | ||
|