diff --git a/.versions b/.versions new file mode 100644 index 0000000..60b436b --- /dev/null +++ b/.versions @@ -0,0 +1,63 @@ +aldeed:autoform@4.0.0 +aldeed:simple-schema@1.1.0 +application-configuration@1.0.4 +base64@1.0.2 +binary-heap@1.0.2 +blaze@2.0.4 +blaze-tools@1.0.2 +boilerplate-generator@1.0.2 +callback-hook@1.0.2 +cfs:access-point@0.1.44 +cfs:autoform@2.1.1 +cfs:base-package@0.0.28 +cfs:collection@0.5.4 +cfs:collection-filters@0.2.4 +cfs:data-man@0.0.6 +cfs:file@0.1.16 +cfs:http-methods@0.0.27 +cfs:http-publish@0.0.13 +cfs:power-queue@0.9.11 +cfs:reactive-list@0.0.9 +cfs:reactive-property@0.0.4 +cfs:standard-packages@0.5.4 +cfs:storage-adapter@0.2.1 +cfs:tempstore@0.1.4 +cfs:upload-http@0.0.20 +cfs:worker@0.1.4 +check@1.0.4 +ddp@1.0.14 +deps@1.0.6 +ejson@1.0.5 +follower-livedata@1.0.3 +geojson-utils@1.0.2 +html-tools@1.0.3 +htmljs@1.0.3 +http@1.0.10 +id-map@1.0.2 +jquery@1.11.3 +json@1.0.2 +livedata@1.0.12 +logging@1.0.6 +meteor@1.1.4 +minifiers@1.1.3 +minimongo@1.0.6 +mongo@1.0.11 +mongo-livedata@1.0.7 +mrt:moment@2.6.0 +observe-sequence@1.0.4 +ordered-dict@1.0.2 +raix:eventemitter@0.1.1 +raix:ui-dropped-event@0.0.7 +random@1.0.2 +reactive-var@1.0.4 +retry@1.0.2 +routepolicy@1.0.4 +spacebars@1.0.5 +spacebars-compiler@1.0.4 +templating@1.0.11 +tracker@1.0.5 +ui@1.0.5 +underscore@1.0.2 +url@1.0.3 +webapp@1.1.6 +webapp-hashing@1.0.2 diff --git a/package.js b/package.js index c26aab6..02915bd 100644 --- a/package.js +++ b/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "cfs:autoform", - version: "2.1.0", + version: "2.1.1", summary: "Upload files as part of autoform submission", git: "https://github.com/aldeed/meteor-cfs-autoform.git" }); @@ -9,12 +9,12 @@ Package.onUse(function(api) { api.use('underscore@1.0.1', 'client'); api.use('templating@1.0.9', 'client'); - api.use('aldeed:autoform@4.0.0'); + api.use('aldeed:autoform@4.0.0 || 5.0.0'); api.use('cfs:standard-packages@0.0.2', ['client', 'server'], {weak: true}); api.use('raix:ui-dropped-event@0.0.7', 'client'); // ensure standard packages are available globally incase the user didn't `meteor add cfs:standard-packages` - api.imply('cfs:standard-packages') + api.imply('cfs:standard-packages'); api.export('CfsAutoForm', 'client'); diff --git a/versions.json b/versions.json deleted file mode 100644 index 5f0a560..0000000 --- a/versions.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "dependencies": [ - [ - "aldeed:autoform", - "4.0.0" - ], - [ - "aldeed:simple-schema", - "1.1.0" - ], - [ - "base64", - "1.0.1" - ], - [ - "blaze", - "2.0.3" - ], - [ - "check", - "1.0.2" - ], - [ - "ddp", - "1.0.10" - ], - [ - "deps", - "1.0.5" - ], - [ - "ejson", - "1.0.4" - ], - [ - "geojson-utils", - "1.0.1" - ], - [ - "htmljs", - "1.0.2" - ], - [ - "id-map", - "1.0.1" - ], - [ - "jquery", - "1.0.1" - ], - [ - "json", - "1.0.1" - ], - [ - "livedata", - "1.0.10" - ], - [ - "logging", - "1.0.4" - ], - [ - "meteor", - "1.1.3" - ], - [ - "minimongo", - "1.0.4" - ], - [ - "mrt:moment", - "2.6.0" - ], - [ - "observe-sequence", - "1.0.3" - ], - [ - "ordered-dict", - "1.0.1" - ], - [ - "raix:ui-dropped-event", - "0.0.7" - ], - [ - "random", - "1.0.1" - ], - [ - "reactive-var", - "1.0.3" - ], - [ - "retry", - "1.0.1" - ], - [ - "templating", - "1.0.9" - ], - [ - "tracker", - "1.0.3" - ], - [ - "ui", - "1.0.3" - ], - [ - "underscore", - "1.0.1" - ] - ], - "pluginDependencies": [], - "toolVersion": "meteor-tool@1.0.36", - "format": "1.0" -}