Thomas Wang

Results 5 issues of Thomas Wang

html-oriented manifest format ----------------------------- In the new schema format, which is defined in https://github.com/ember-fastboot/fastboot/pull/272/commits/3fd5bc90b63e2c497a8f519627556f9e94160065 the manifest is written into HTML and later extracted by fastboot on server side instead of...

breaking

``` warning ember-cli-babel > @babel/[email protected]: 🚨 As of Babel 7.4.0, this package has been deprecated in favor of directly including core-js/stable (to polyfill ECMAScript features) and regenerator-runtime/runtime (needed to use...

For example: ```js _list: computed('list.[]', { get() { return A(get(this, 'list').map((el) => el)); }, set: (key, value) => value }), ``` This code will throw ``` Transformation error (Cannot read...

`recognize` ignores search param value after the `=`. For example this is reported in https://github.com/pretenderjs/pretender/issues/316 ```js let u = new URL('/films?filter=genres=in=(comedy);actor=="Ryan Reynolds"', window.location) for (let pair of u.searchParams.entries()) { console.log(pair[0]+...