エリス

Results 164 comments of エリス

I tried building your project, somewhat, to follow along with, What I noticed is that the plugins and platforms are all defined in `config.xml`. Cordova has been moving away from...

I quickly made repo to show how I would have handled having `plugins` and `platforms` in the `package.json` and not have them defined in `config.xml`. But like I said earlier,...

Can you confirm if this is still a problem with Cordova Electron 3.0.0? To upgrade: ``` cordova platform remove electron cordova platform add [email protected] ```

I tried locally and was unable to reproduce this issue on Windows 10. Could you confirm if you still have this problem? Also, maybe try with the latest Cordova Electron...

If you are using a leading slash in your file path, for example `/runtime-es2015.js` or if you have set the `base` tag `href` to `/`, this may be causing you...

@jammer99 The current workaround solution is either: 1. Provide the full file path to the build configuration json. E.g. `/path/to/buildConfig.json` 2. Rename the file too `build.json` and do not set...

+1 to move it to an appropriate location. I don't think paramedic or any other repo should have used this repo like that. This repo is a playground for experimental...

What you are seeing, in the Node.js console or even in Chrome Developer Tools, is the default behavior. Think of these lines as a feedback line. When executing a JS...

`npm run lint -- --fix` is what I am using.

If you must have a command added to `package.json`, then I suggest ```json "lint:fix": "npm run lint -- --fix", ``` So the command becomes `npm run lint:fix`.