Skip to content

Commit

Permalink
refactor: structure (#287)
Browse files Browse the repository at this point in the history
Co-authored-by: Almanov Nikita <131481562+nikkeyl@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and nikkeyl authored Nov 11, 2024
1 parent d59d567 commit 44869bb
Show file tree
Hide file tree
Showing 34 changed files with 453 additions and 654 deletions.
1 change: 1 addition & 0 deletions .ecrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"exclude": [
"config.yml",
"CHANGELOG.md",
"pnpm-lock.yaml",
"README.md"
Expand Down
1 change: 0 additions & 1 deletion .github/FUNDING.yaml

This file was deleted.

10 changes: 10 additions & 0 deletions .github/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
newIssueWelcomeComment: >
Thanks for opening your first **Issue** here!
Be sure to follow the **Issue template**!
newPRWelcomeComment: >
Thanks for opening this **Pull Request**!
Please check out our [Contributing Guidelines](https://github.com/archoleat/.github/blob/main/CONTRIBUTING.md).
firstPRMergeComment: >
Congrats on merging your first **Pull Request**!
49 changes: 0 additions & 49 deletions .github/workflows/codeql.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
pre-commit:
name: Pre-commit
name: Pre Commit

if: ${{ github.actor != 'dependabot[bot]' }}

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
![NPM Downloads](https://img.shields.io/npm/dm/%40archoleat%2Fstylelint-config-extended-scss)
![ESM](https://img.shields.io/badge/ESM-fe0)
![Provenance](https://img.shields.io/badge/Provenance-fo0)
![CodeQL](https://img.shields.io/github/actions/workflow/status/archoleat/stylelint-config-extended-scss/codeql.yaml?label=CodeQL)
![Specs](https://img.shields.io/github/actions/workflow/status/archoleat/stylelint-config-extended-scss/spec.yaml?label=Specs)
![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)
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
},
"type": "module",
"imports": {
"#app": "./src/app/index.ts",
"#at-rule-parameters": "./src/features/at-rule/parameters.ts",
"#features": "./src/features/index.ts",
"#rule-parameters": "./src/features/rule/parameters.ts",
"#shared": "./src/shared/index.ts"
"#config": "./src/config/index.ts",
"#at-rule-parameters": "./src/utils/at-rule/parameters.ts",
"#utils": "./src/utils/index.ts",
"#rule-parameters": "./src/utils/rule/parameters.ts",
"#data": "./src/data/index.ts"
},
"exports": {
".": "./index.js"
Expand All @@ -61,7 +61,7 @@
"stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@archoleat/reglib": "^1.1.0",
"@archoleat/reglib": "^1.2.0",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
Expand All @@ -88,7 +88,7 @@
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/coverage-v8": "^2.1.4",
"conventional-changelog-conventionalcommits": "^8.0.0",
"editorconfig-checker": "^6.0.0",
"eslint": "^8.57.1",
Expand All @@ -101,7 +101,7 @@
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.0",
"git-pull-run": "^1.4.0",
"globals": "^15.11.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
Expand All @@ -110,10 +110,10 @@
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"rollup": "^4.24.3",
"rollup": "^4.25.0",
"rollup-plugin-esbuild": "^6.1.1",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
"vitest": "^2.1.4"
}
}
Loading

0 comments on commit 44869bb

Please sign in to comment.