-
Notifications
You must be signed in to change notification settings - Fork 184
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
Error: Cannot find module 'babel-runtime/helpers/possibleConstructorReturn' #74
Comments
Hi @pilarArr Thanks for reporting this issue. I guess you have two options: you can either use the older |
Hi @constantinius ! Thanks for your fast reply.
When installing the older |
Ah, okay, so this does not work without transpiling. We currently use a webpack based approach using babel-loader. I guess the whole toolchain is based on an older version of babel. |
@constantinius I'll be finally using the older |
@pilarArr Alright, good to know. I think we can leave this open, I'll comb through the issues when I revise the babel setup. |
Had a similar issue with a fresh install for a node based project. Needed to install the dev dependencies in the /node_modules/geotiff directory. |
@wshaver Care to share your setup? I am just using npm install and then import GeoTIFF from 'geotiff' and I received this
then I tried import { GeoTIFF } from 'geotiff/dist/geotiff'
then I tried import { GeoTIFF } from 'geotiff/src/main' and received this
|
Ok So I did get it working with
|
I'm using
geotiff
on a meteor app. I get this error when deploying but not when running on development mode.The
geotiff
version I'm using is 1.0.0-beta.6I'm not using
babel-runtime
because meteor updated to babel 7 some time ago. So I'm using@babel/runtime
7.1.5. Should I installbabel-runtime
as well ?The text was updated successfully, but these errors were encountered: