vlascik
vlascik
Perfect, thank you.
Yep I tried it a while back, .scss was not recreated, I think this was fixed, but .js still was iirc. Not sure how much it helped though. It seems...
I'm currently too busy with back-end work, but I will update with what I find out once I'm back to ember. However, after https://github.com/broccolijs/broccoli-plugin/pull/23 lands (if ever), regenerating pod-names.js will...
You already have a near complete rewrite at https://github.com/fireflysemantics/validatorts/ . Merge it here, replace that weird angular build system with tsc to create ambient declarations, use babel to generate es5/es6...
Had a similar problem, if I remember correctly what helped was to force latest e-power-select version via yarn `resolutions`. You could also try to run `yarn why ember-power-select` to find...
Any chance this will get merged soon? This PR seems to have worked, SassCompiler is gone from e-cli rebuild slowest nodes list. I'm still having a pretty slow entry for...
Hm typescript definitions seem to be doable, https://www.typescriptlang.org/docs/handbook/modules.html#working-with-other-javascript-libraries . Maybe these could be generated from data at https://github.com/ember-cli/ember-rfc176-data with a script similar to ones that are there already. You can...
So, got bored, and created a script to generate `ember.d.ts` based on RFC 176 data: https://github.com/ember-cli/ember-rfc176-data/pull/25 Generated file here: https://gist.github.com/vlascik/678b7163f2cd62241b3ede0a0fe66c87 Module name completion should work, but as said previously, in...
I think it's the same with integers, 'fieldB' => 'integer|required_if:fieldA,0' treats 0 as string, so the check ``` if (this.validator._objectPath(this.validator.input, req[0]) === req[1]) { ``` fails, as the req[1] is...
any progress on this? rewriting AST transforms into functional style is fairly easy (if you need an example, let me know), and even if embroider doesn't work with this yet,...