Rantetsu Inori
Rantetsu Inori
The new start menu for Windows 10 2004/20H2 is coming. And the new Fluent Design icons which were recommended by Microsoft, usually have a shadow under the icons. Then the...
The original translation does not contain some new content. Also, both chinese.xml and tchinese.xml inside the latest installer are actually traditional Chinese.
**Bug report or Feature request?** Feature request **Version (complete output of `terser -V` or specific git commit)** 5.14.2 **Complete CLI command or `minify()` options used** ```javascript { compress: { conditionals:...
The properties of an old library allows setting many types, but only getting one type. This is represented by Date. ```javascript interface Foo { get bar(): Date; set bar(value: Date...
The API of a UI library uses overloaded functions to add controls, like this. ```typescript // *.d.ts declare function add(type: "scrollbar", name: string): Scrollbar declare function add(type: "slider", name: string):...
### Vue version 3.2.45 ### Link to minimal reproduction https://sfc.vuejs.org/#eNqVUk1LxEAM/StxLt2FbYseS7coIijoRQQvA9Jds7XS+WAmVaT2v5uZ6bpePbWZl7y8vGQSV9YWHyOKStR+73pL4JFGC0Oru60U5KVopO6VNY5gAoeHDeyNsiPhK8xwcEZBxgSZ1FLvjfYEL8p3sA2ptR7VDl2zOl8fwYQdGVaT1AAdUgWrNWybWFt8tMOIm4CwFkZiXEEig2/w5HrdxfxYL+lUxuTxy3JolnrmxmUJ9GXRHELzCp5dT+1uwOtFw+NJZ5jhL1N2wWMt5ZClthn0HrQhaL3vOx2YgMySkni4qC6Tm5GyJlR2aAk5AqjfzptpikbMc11yFF97zWqgiq3ZeIalgMv4yiGraRbvVlhQ69gzVgC3Tw/3dyHnZkCFmtZJe1wak57leRr6vxNAnjNDXf4qFxuRjiBXrS3evdF8Msn9BeBLqdI+whufRIileCOyvipLf9iHQ3v3hXFdyX+FGzX1Cgv0Kt858+nRMbEUgSKsTsw/487lnQ== ### Steps to reproduce Define a computed property, getter type is `number`, setter type is `number | string`. The computed...
Can we config the displayName form? For example, if a styled component named `StyledTabBar`, we could transform it to `tab-bar`. The config option could be like: ```javascript { plugins: [...
I am using [unplugin-auto-import](https://github.com/unplugin/unplugin-auto-import) with babel-plugin-styled-components. Then we didn't required to explicit import { styled, createGlobalStyle } from "styled-components" and so on, just directly use them. However, babel-plugin-styled-components doesn't recognize...
### Description The `escape-case` and `number-literal-case` rules supported uppercase values now, however is it possible to add a **lowercase option** for it? ### Fail ```js // unicorn/escape-case const foo =...
### Clear and concise description of the problem If declare and export a class. ```typescript export default class Foo { } ``` While directly use it for construct a new...