Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FX-5856] Delete Maybe export from picasso/utils package #4527

Merged
merged 4 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changeset/swift-adults-search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@toptal/picasso-utils': major
'@toptal/picasso': major
AdrianContiu marked this conversation as resolved.
Show resolved Hide resolved
---

### Utils

- remove the export of "Maybe" type from the Utils package
sashuk marked this conversation as resolved.
Show resolved Hide resolved
- the type can be defined directly in your project or imported from private package `@topkit/gql-base-types` if you have access
1 change: 0 additions & 1 deletion packages/base/Utils/src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export { default as isPointerDevice } from './is-pointer-device'
export { default as isString } from './is-string'
export { default as isSubstring } from './is-substring'
export { default as kebabToCamelCase } from './kebab-to-camel-case'
export type { Maybe } from './monads'
export { default as noop } from './noop'
export { default as toTitleCase } from './to-title-case'
export { default as useCombinedRefs } from './use-combined-refs'
Expand Down
1 change: 0 additions & 1 deletion packages/base/Utils/src/utils/monads.ts

This file was deleted.

Loading