-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import package #123
Comments
The package is working, but I am wondering too, from where one should import the import { S3 } from 'meteor/lepozepo:s3'; // seems not to work |
Hey guys! I haven't set up the package for imports yet. I'll have a look over the weekend so we can lazy load it too. |
Awesome, thank you for your work! |
Thanks, I had not figured out that the package is automatically loaded in the whole app, I haven't understood the way of importing javascript packages yet, it's a bit non-standard. |
I've run |
The problem is that |
Still the same? I tried to import S3 to /imports/api/methods.js with no luck and without importing it says "S3.delete is not a function" |
Would be awesome if there was a fix for this. |
I'd love to have this too! |
No news on this feature? |
I don't want to pile on but am just getting my act together to use ES2015 modules and ran into the same issue. Thank you for maintaining this package and would be grateful if you were able to make this update. |
have anyone found solution for this? |
I'm using Meteor 1.4 and I don't know how to import this package. I've tried with
import {S3} from 'meteor/lepozepo:s3'
,import S3 from 'meteor/lepozepo:s3'
,import 'meteor/lepozepo:s3'
andimport {AWS} from 'meteor/lepozepo:s3'
. I'm doing this in a file in theserver
directory.The text was updated successfully, but these errors were encountered: