Skip to content

Export exception and slash method from their own submodules

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Sep 06:01
· 5 commits to 6.x since this release

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

  • split exceptions and slash into its own imports (dc09554), closes #44

What's Changed

New Contributors

Full Changelog: v6.7.3...v6.8.0