You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix(cli-create): fix scoped creation
This one works as it should:
yarn create @scope/name => @scope/create-name
There were problems when name was omitted:
Before:
yarn create @scope => create-
yarn create @scope/ => @scope/create-
After:
yarn create @scope => @scope/create
yarn create @scope/ => @scope/create
Fixes#6233
* refactor(cli-create): make parsePackageName more robust and add tests
* refactor(cli-create): add missing typyings
0 commit comments