chenquincy / app-info-parser

A javascript parser for parsing .ipa or .apk files. IPA/APK文件 js 解析器
MIT License
502 stars 119 forks source link

The new version doesn't work #17

Closed relbraun closed 5 years ago

relbraun commented 5 years ago

I have installed the new version and tring to use it on a browser (Chrome) and I see this error in the console:

Uncaught ReferenceError: regeneratorRuntime is not defined

Browser version (74.0.3729.131):

chenquincy commented 5 years ago

@relbraun It seems like miss transform-runtime in your babel setting. Temporarily, solve this by:

npm install -D babel-plugin-transform-runtime

then add plugins to your babel config

{
    "plugins": ["transform-runtime"]
}
chenquincy commented 5 years ago

To resolve the compatibility issues, I will publish a compatible version at this weekend(may be few days later).

relbraun commented 5 years ago

What I have to do to make this feature run on internet explorer?

chenquincy commented 5 years ago

@relbraun This library don't support to IE.

chenquincy commented 5 years ago

@relbraun v0.3.0 has been published. It resolves the regeneratorRuntime is not defined, you don't need to add babel-plugin-transform-runtime any more.