Jamie Kyle
Jamie Kyle
[GitHub just added support for using repositories as templates](https://github.blog/2019-06-06-generate-new-repositories-with-repository-templates/) it would be great if the `hub create` command supported them: ``` hub create -t user/repo ```
Add a `--force` flag to `bolt normalize` which skips the check to see if workspaces have a compatible version range with the project's dependencies. Instead just look for the highest...
Flags to copy from Yarn: ``` --pattern "@scope/(foo|bar)" --scope, -S @scope --latest, -L --caret --tilde --exact ``` Note that `--pattern` and `--scope` should both be specifiable multiple times (assuming Yarn...
Idea: ```sh bolt ws --when [ -f ./tsconfig.json ] -- tsc ```
From today's Frontend Guild
- Anything that _does not_ have a `defaultProp` should be marked as `.isRequired` - Anything that _does_ have a `defaultProp` should not be marked as `.isRequired` Also fixed the following...