Norman Breau

Results 828 comments of Norman Breau

I tend to agree with @raphinesse here. While cryptic... NPM does say git doesn't exists: ``` npm ERR! path git npm ERR! code ENOENT ``` Where `ENOENT` stands for "Error...

> When I use cordova-sqlite-storage with the types from DefinitelyTyped, it works out of the box and without any imports: What's actually happening here is that when you install `@types/cordova-sqlite-storage`...

ooph... I think this might be because native code is external from the webview, and `localhost` server doesn't actually exist to anything outside the webview (I think...). Not 100% sure,...

Thanks for confirming, i think my suspicions are accurate. When using the web asset loader, the only thing that understands the https://localhost url is the webview itself. Anything external won't...

> After delete repo locally and clone it again, plugins are not copied to platforms folders. To fix this bug, I need to remove both platforms and add it again....

For a team setup it's recommended to git ignore the following folders: - node_modules - plugins - platforms When you clone the repo, the developer should: - npm install -...

Iframes don't have access to the storage api by default, which is required to handle ITP. Iframes that is a direct child of the top level frame have an attribute...

Not really an expert in this repo but I believe the main reason file paths are used is largely due to some cross-app communication, such as from the camera plugin...

As the error states, something is thinking you're attempting to load an HTML document outside of your application bundle, which the webview doesn't allow. Can you share a [minimal reproduction...

> I assume, this could be a general point for discussion. My gut feeling says that a lot of plugins will use string messages over real error objects. While that...