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
{{ message }}
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
When running npm run build following error occures.
The reason for this error is, that in package.json, the reference to bootstrap is defined as the following.
"bootstrap": "^4.0.0-alpha.5",
Because of the defined logic for ^ the used package is always the last working package (non breaking Version). The latest version for bootstrap package currently is 4.0.0-alpha.6. The difference between the two versions consists of some files beeing renamed. For the PrivateWebsite this results in an error when performing the command above, because these two packages got renamed
Change reference to bootstrap package in package.json to use specific version "bootstrap": "4.0.0-alpha.5",
Change references _scss/vendor/bootstrap.scss to use correct filenames.
I would suggest to use solution 2. because it will fit up to future relases of bootstrap as well as the final release of bootstrap. So for this purpose I am doing a pull request that fixes this issue.
Cheers
The text was updated successfully, but these errors were encountered:
When running npm run build following error occures.
The reason for this error is, that in package.json, the reference to bootstrap is defined as the following.
"bootstrap": "^4.0.0-alpha.5",
Because of the defined logic for ^ the used package is always the last working package (non breaking Version). The latest version for bootstrap package currently is 4.0.0-alpha.6. The difference between the two versions consists of some files beeing renamed. For the PrivateWebsite this results in an error when performing the command above, because these two packages got renamed
The wrong references are defined in scss/vendor/_bootstrap.scss.
There are two possible solutions.
"bootstrap": "4.0.0-alpha.5",
I would suggest to use solution 2. because it will fit up to future relases of bootstrap as well as the final release of bootstrap. So for this purpose I am doing a pull request that fixes this issue.
Cheers
The text was updated successfully, but these errors were encountered: