Ilya Radchenko

Results 184 issues of Ilya Radchenko

Had code like ```js return Ember.observer.apply(Ember, keys.concat(function () { Ember.run.throttle(this, throttled[0], throttled[1], throttled[2] || false); })); ``` which was turned into ```js return observer.apply(Ember, keys.concat(function () { throttle(this, throttled[0], throttled[1],...

``` ERR ./tests/integration/components/tag-input-test.js Transformation error (Cannot read property 'some' of undefined) TypeError: Cannot read property 'some' of undefined at new ModuleInfo (/Users/ilya/.npm/_npx/26337/lib/node_modules/ember-qunit-codemod/transforms/convert-module-for-to-setup-test/index.js:62:49) at createModule (/Users/ilya/.npm/_npx/26337/lib/node_modules/ember-qunit-codemod/transforms/convert-module-for-to-setup-test/index.js:330:24) at NodePath.bodyPath.each.expressionPath (/Users/ilya/.npm/_npx/26337/lib/node_modules/ember-qunit-codemod/transforms/convert-module-for-to-setup-test/index.js:700:28) at NodePath.each...

Love mentioned in https://mobile.twitter.com/tomlienard/status/1586771131725381643

Example code: ```typescript import PropTypes, {InferProps} from 'prop-types'; import Task from './task'; import Row from '../row'; const TaskRow = (props: InferProps) => ( ); const propTypes = { level: PropTypes.number.isRequired,...

**Describe the bug** `Object.keys(localStorage)` returns ['_store'] not the keys stored You have to do `Object.keys(localStorage._store)` to get the keys. This also happens with for-in loop. Using "happy-dom": "^12.10.3" **To Reproduce**...

bug

### Bug description Building my app in expo I get this error: ``` [stderr] Exception raised during command execution, stderr=error Command failed with exit code 1. [stderr] , stdout=yarn run...

bug

I can see https://github.com/css-modules/css-modules being used for: ``` no-highlight components/ my-component/ component.js template.hbs style.css ``` And then you could inject that class name into the component object in the built...

Since most of the items already have the template precompiled code, `Ember.Handlebars.compile` shouldn't be used (like in the core). This will allow for users of this framework to have performance...

What does this do, or what will it do? Is this project still alive?