-
Notifications
You must be signed in to change notification settings - Fork 12
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
Removed BrowserSync from depenencies #834
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you need to change the package.json version and provide the change log details for the PR to valid
linters/ignore-gitignored.mjs
Outdated
const dirname = path.dirname(filename); | ||
const gitignorePath = path.resolve(dirname, '.gitignore'); | ||
|
||
export default [includeIgnoreFile(gitignorePath)]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export default [includeIgnoreFile(gitignorePath)]; | |
export default [includeIgnoreFile(gitignorePath)]; | |
package.json
Outdated
@@ -77,6 +74,7 @@ | |||
"postcss": "^8.4.38", | |||
"postcss-loader": "^8.1.1", | |||
"postcss-scss": "^4.0.9", | |||
"prettier": "^3.3.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove all Prettier-related things, it wouldn't be too wise to add them to the existing setup (there would probably be a loooot of re-formatting 😄)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description
Removed BrowserSync as a project dependency.
I searched the whole project for potential usages and found none, and ran linters as well to detect possible issues.
Also updated ES lint config files based on a new setup.