Luma
                                            Luma
                                        
                                    > when should we escape the route name My opinion is stop using automatic prepending dollar sign(`$`) and use original text as JS object key. ```js $api['2'].$get() $api['foo/bar'].$get() // not...
What will be broken with my idea? - Route `/123`: `$api.$123` → `$api['123']` - Route `/a%2fb`: `$api.a_b` (originally, `$api.a_2fb`) → `$api['a\x2fb']` (or in this case, `$api['a/b']`)
We're sorry for the late response. > there are unique rules that require the order to be specified hm.. I can confirm sensing order of query is not illegal as...
How about followings? ```ts api.some.path.$get({ query: { param1: 'foo', param2: 'bar', }, }) ``` or ```ts api.some.path.$get({ query: { param1: query.param1, param2: query.param2, }, }) ``` These maybe can fix...
とりあえずclass-transformerユーザにとっては、これは重要そうなので入れる方向でいいかと思っています。 PRの内容は大体いいと思います。query側のテストも入れておきたいかもしれない。 必須ではありませんが、frourio-express側にもPRを作ることが必要なので、もしメンバー以外であっても作ってもらえると早めに入るかもしれません。
しかしオリジナルのものにアクセスできる機構はあったほうがいいかもしれないとは思った。class-transformerにその機能があるわけではないなら、それは用意しておくと良いかも(良くない設計を生むような、余計な可能性もあるが、たとえば全ルートにデバッグログ機構を追加するために利用する、とか)
これを標準にするには、これまで使えていた機能が使えなくなりすぎるかもしれない。
Oh, sorry, updating is correctly working. I misunderstand something. However, the latest file is still not published.
Ok, I got it. The file `types/Actions.d.ts` is copied from `types/index.d.ts` in your publishing cycle ? Below is working properly. ``` import { BoundActions } from "redux-zero/types"; ``` But document...
Rule `import/no-unresolved` raise false positive when there is no `main` field in the `package.json`
I'm using [`monaco-editor`](https://npmjs.com/package/monaco-editor) (0.26.1) and getting no-unresolved error with `import ... from 'monaco-editor'`. `monaco-editor` has following `package.json`: ```json ... "typings": "./esm/vs/editor/editor.api.d.ts", "module": "./esm/vs/editor/editor.main.js", ... ``` https://github.com/microsoft/monaco-editor/blob/v0.26.1/package.json#L15-L16