Skip to content
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

refactor: remove browsers-features plugin #76

Merged
merged 4 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ecrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"exclude": [
"specs",
"CHANGELOG.md",
"CONTRIBUTING.md",
"package.json",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/editorconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
run: pnpm i

- name: Lint
run: pnpm run lint:editorconfig
run: pnpm lint:editorconfig
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs:
run: pnpm i

- name: Lint
run: pnpm run lint:ts
run: pnpm lint:ts
2 changes: 1 addition & 1 deletion .github/workflows/markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
run: pnpm i

- name: Lint
run: pnpm run lint:md
run: pnpm lint:md
2 changes: 1 addition & 1 deletion .github/workflows/mocha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs:
run: pnpm i

- name: Tests
run: pnpm run test
run: pnpm test
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
run: pnpm i

- name: Lint
run: pnpm run lint:formatting
run: pnpm lint:formatting
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: pnpm i

- name: Build
run: pnpm run build
run: pnpm build

- name: Remove TS Build Info
run: rm -rf dist/tsconfig.tsbuildinfo
Expand All @@ -57,4 +57,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: pnpm run release
run: pnpm release
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![NPM Downloads](https://img.shields.io/npm/dm/%40archoleat%2Fstylelint-config-extended-scss)
![CodeQL](https://img.shields.io/github/actions/workflow/status/Archoleat/stylelint-config-extended-scss/codeql.yaml?label=CodeQL)
![Test](https://img.shields.io/github/actions/workflow/status/Archoleat/stylelint-config-extended-scss/mocha.yaml?label=Test)
![Commitlint](https://img.shields.io/github/actions/workflow/status/Archoleat/core/commitlint.yaml?label=Commitlint)
![Commitlint](https://img.shields.io/github/actions/workflow/status/Archoleat/stylelint-config-extended-scss/commitlint.yaml?label=Commitlint)
![Editorconfig](https://img.shields.io/github/actions/workflow/status/Archoleat/stylelint-config-extended-scss/editorconfig.yaml?label=Editorconfig)
![Prettier](https://img.shields.io/github/actions/workflow/status/Archoleat/stylelint-config-extended-scss/prettier.yaml?label=Prettier)
![ESLint](https://img.shields.io/github/actions/workflow/status/Archoleat/stylelint-config-extended-scss/eslint.yaml?label=ESLint)
Expand Down Expand Up @@ -58,9 +58,6 @@
- [`stylelint-high-performance-animation`](https://github.com/kristerkari/stylelint-high-performance-animation):
Enhances your animations.

- [`stylelint-no-unsupported-browser-features`](https://github.com/ismay/stylelint-no-unsupported-browser-features):
Disallow features that aren't supported by your target browser audience.

- [`stylelint-order`](https://github.com/hudochenkov/stylelint-order):
Sorts **over 400 properties** for enhanced clarity and maintainability.

Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"stylelint-gamut",
"stylelint-group-selectors",
"stylelint-high-performance-animation",
"stylelint-no-unsupported-browser-features",
"stylelint-order",
"stylelint-plugin-defensive-css",
"stylelint-plugin-logical-css",
Expand All @@ -40,7 +39,7 @@
"url": "https://github.com/Archoleat/stylelint-config-extended-scss/issues/new/choose"
},
"scripts": {
"init": "pnpm i && husky && git submodule init && git submodule update",
"init": "pnpm i && husky && git submodule update",
"build": "rollup -c rollup.config.js",
"test": "mocha",
"release": "semantic-release",
Expand Down Expand Up @@ -74,7 +73,6 @@
"stylelint-gamut": "^1.3.4",
"stylelint-group-selectors": "^1.0.10",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-no-unsupported-browser-features": "^8.0.1",
"stylelint-order": "^6.0.4",
"stylelint-plugin-defensive-css": "^1.0.2",
"stylelint-plugin-logical-css": "^1.0.0",
Expand Down
Loading