Export exception and slash method from their own submodules
This release moves the following classes/methods to their own submodules. The existing imports will also continue to work, hence there are no breaking changes.
- import { slash } from '@poppinss/utils'
+ import { slash } from '@poppinss/utils/slash'
- import { Exception, createError } from '@poppinss/utils'
+ import { Exception, createError } from '@poppinss/utils/exception'
- import { RuntimeException, InvalidArgumentsException } from '@poppinss/utils'
+ import { RuntimeException, InvalidArgumentsException } from '@poppinss/utils/exceptions'
Features
What's Changed
- Fix typo in Secret by @marcuspoehls in #45
New Contributors
- @marcuspoehls made their first contribution in #45
Full Changelog: v6.7.3...v6.8.0