Armin Pfurtscheller

Results 14 comments of Armin Pfurtscheller

@smhg Hey there, I wanted to ask the same question - it would be nice to make some output in the JSON files optional. I know that it's used for...

I can confirm that this is an issue with Ember 3.12.x (both source and data) and I've also tried the latest beta `4.0.0.beta-10` - are there any plans to fix...

There even seems to be a problem when using the [new test syntax](https://github.com/emberjs/rfcs/blob/master/text/0232-simplify-qunit-testing-api.md): ```js // MyService = service from engine or addon let mock = MyService.extend({ mockedProperty() { ... });...

@Leooo Thanks for your quick response - I tried this too but without any difference. What I've noticed additionally is the fact the engine-only services are `undefined` when accessing them...

I just stumbled over the same issue when trying to abort a transition using the following query parameter setup: ``` queryParams:{ param: { refreshModel: true, as: 'alias' } } ```...

I've written a simple vite plugin applying the transformers: ``` const { di } = require('@wessberg/di-compiler'); const typescript = require('rollup-plugin-ts'); module.exports = function (options = {}) { return { name:...

If I understand the Github docs regarding large files correctly, file uploads (via browsers) are limited to 25MB only: https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-large-files-on-github#about-size-limits-on-github

Hey @vepanimas thanks for providing a fix for this, I can confirm that it's working with the `4.0.2` and adding a `graphql.config.js` in the root of the project.

I am experiencing the same in my Gatsby project locating schema definition files inside `.cache` folder.

I've not excluded it in the config file and it's still behaving differently as in previous versions. Something must have changed in the last major upgrade.