Description
The @flarum/jest-config package has a typo in its source directory structure:
- Current:
js-packages/jest-config/src/boostrap/
- Expected:
js-packages/jest-config/src/bootstrap/
The folder is missing the first 't' in 'bootstrap'.
Location
js-packages/jest-config/src/boostrap/
Impact
- Import paths must use the misspelled path:
@flarum/jest-config/src/boostrap/admin
- Inconsistent with the correct spelling used elsewhere (e.g.
bootstrapAdmin)
Suggested fix
Rename src/boostrap/ to src/bootstrap/ and update any imports that reference the old path.
Description
The
@flarum/jest-configpackage has a typo in its source directory structure:js-packages/jest-config/src/boostrap/js-packages/jest-config/src/bootstrap/The folder is missing the first 't' in 'bootstrap'.
Location
js-packages/jest-config/src/boostrap/Impact
@flarum/jest-config/src/boostrap/adminbootstrapAdmin)Suggested fix
Rename
src/boostrap/tosrc/bootstrap/and update any imports that reference the old path.