LitoMore

Results 303 comments of LitoMore

For other reviewers: `runnning` -> `running`

I think to use the API like [ant-design table](https://ant.design/components/table/) is will better than using `` and `` to create a table.

But it will be generated locally. We should disable it.

You should. For example the CI problem of #91, you won't notice the CI problem on your local. That's because you have a lockfile locally, which is inconsistent with the...

@tyrasd Any progress?

For TypeScript part, I suggest to use [@sindresorhus/tsconfig](https://github.com/sindresorhus/tsconfig) for our base configurations.

fyi: https://github.com/Houdou/launchpad-rgb

The root cause is `create-ink-app` always using the latest version of [`meow`](https://github.com/vadimdemedes/create-ink-app/blob/master/index.js#L111) and [`@sindresorhus/tsconfig`](https://github.com/vadimdemedes/create-ink-app/blob/master/templates/ts/tsconfig.json). `create-ink-app` is using a simple install script to install them without a specific version. By default,...

I think the `shortFlag` is redundant, only `aliases` just be fine. ```javascript { flags: { unicorn: { aliases: ['-u'] } } } // same with { flags: { unicorn: {...

> `shortFlag` is there to semantically indicate what's the short version of the flag. `aliases` is just any kind of alias long/short/medium/thin/thick/unicorny. This distinction will be especially important when we...