Pier Fumagalli
Pier Fumagalli
Same here on NS8. Simple build to reproduce: * `ns create foo` (using _Plain TypeScript_, template _Hello, World_) * add `TARGETED_DEVICE_FAMILY=1` to `./App_Resources/iOS/build.xcconfig` * `ns run` The `TARGETED_DEVICE_FAMILY` variable falls...
If it helps, in my `Podfile` I added (as above) ``` system('sed -i "" "s|TARGETED_DEVICE_FAMILY = \"1,2\";|TARGETED_DEVICE_FAMILY = 1;|g" myapp.xcodeproj/project.pbxproj') ``` This needs to be specified _outside_ of any `pre_install`...
We had few misalignments in the team with Vetur not being configured _perfectly_ by a few folks, so I took the week-end to write a small Webpack plugin that checks...
I do this with an environment variable. The `id` and `appResourcesPath` are configurable via `nativescript.config.ts` and when this is executed, the code determines the correct values for those parameters. I...
In case this helps anyone, I just added a PR #5518 that allows specifying extra command line arguments when running in the iOS simulator
I found that forcedly setting `preserve-comments: false` in my `.nycrc` makes it work... By looking at the transpiled code, it seems that the old source map emitted by `tsc` is...
Flagging @esivkov to this one!
We just use an `.eslintignore` file containing the directory of the generated types... https://eslint.org/docs/user-guide/configuring/ignoring-code
I just want to run it as pure Java, I don't need raw speed at this moment, so avoiding the various non-trivialities of loading the native library (I'm actually just...
I needed this for our own project (dealing with GS-1) so I wrote a little encoder that _also_ supports the various FNCx of Code128. I just pushed it out here...