infacto

Results 48 comments of infacto

Ok, great. Related to this issue here, Prettier can parse arguments in this comment line. Separated by spaces. And if an argument has an assigned value with the equal sign...

We just need the [Override Feature](https://prettier.io/docs/en/configuration.html#configuration-overrides) for comments. ```ts // prettier-override printWidth=1000 const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,...

Exactly. Or `prettier-ignore printWidth` (start / end). But ignore should not fallback to the default value (80).

Thanks. I'll check out [Seymour](https://github.com/dpogue/seymour). If I understand it correctly, I just have to set some temp env variables for that metadata and call the regular build command. Sounds interesting....

@dpogue The build works but it seems that the env vars does not work. e.g. my apk has the wrong version. And I set release-build, but it's still debug. etc....

It does not work for me (Windows, Linux not tested.) Anyway, I use my config.xml xml parser overwrite solution now. I wonder how to implement this issue "passing parameters for...

I use NodeJS with a xml to json parser and a json file per app with the required informations (id, name, version). Replaces the `config.xml`. It's not ignored in git...

Ok [seymour](https://github.com/dpogue/seymour) works now for me. Because I call it directly in a NodeJS script, instead of using env vars and call via CLI. **build.js** ```js const seymour = require('seymour');...

@dpogue I'm sorry to bother you. But I think you are more experienced in Cordova than I am. Just a short question: Which Cordova component is picking up the `config.xml`...

In my case I have a monorepo with one cordova setup and multiple Ionic apps with shared code base. Anyway, as I see, the app id is embedded anywhere in...