arui-presets-lint 7.0.0-beta.2 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -18,6 +18,9 @@
18
18
 
19
19
  Данный проект использует [semantic-release](https://semantic-release.gitbook.io/semantic-release/).
20
20
 
21
+ Выпуск новой версии происходит с помощью Github Actions, используйте джобу `Create new library package`. Для beta-версии используется ветка `beta`, для релизной - master.
22
+
23
+
21
24
  ## Установка
22
25
 
23
26
  Для установки всех зависимостей проекта рекомендуется использовать [install-peerdeps](https://github.com/nathanhleung/install-peerdeps)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arui-presets-lint",
3
- "version": "7.0.0-beta.2",
3
+ "version": "7.0.0",
4
4
  "description": "Config files for arui-apps",
5
5
  "author": "core-ds contributors",
6
6
  "license": "MIT",
@@ -15,8 +15,8 @@
15
15
  "node": ">=18.12.0"
16
16
  },
17
17
  "peerDependencies": {
18
- "@typescript-eslint/eslint-plugin": "^6.13.2",
19
- "@typescript-eslint/parser": "^6.13.2",
18
+ "@typescript-eslint/eslint-plugin": "^6.14.0",
19
+ "@typescript-eslint/parser": "^6.14.0",
20
20
  "eslint": "^8.55.0",
21
21
  "eslint-config-airbnb": "^19.0.4",
22
22
  "eslint-config-airbnb-typescript": "^17.1.0",
@@ -32,8 +32,8 @@
32
32
  "eslint-plugin-unicorn": "^49.0.0",
33
33
  "husky": "^4.3.8",
34
34
  "lint-staged": "^15.2.0",
35
- "prettier": "^3.1.0",
36
- "stylelint": "^16.0.1"
35
+ "prettier": "^3.1.1",
36
+ "stylelint": "^16.0.2"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@alfalab/core-components": "44.3.0",
@@ -43,8 +43,8 @@
43
43
  "@semantic-release/github": "9.2.5",
44
44
  "@semantic-release/npm": "11.0.2",
45
45
  "@semantic-release/release-notes-generator": "12.1.0",
46
- "@typescript-eslint/eslint-plugin": "6.13.2",
47
- "@typescript-eslint/parser": "6.13.2",
46
+ "@typescript-eslint/eslint-plugin": "6.14.0",
47
+ "@typescript-eslint/parser": "6.14.0",
48
48
  "eslint": "8.55.0",
49
49
  "eslint-config-airbnb": "19.0.4",
50
50
  "eslint-config-airbnb-typescript": "17.1.0",
@@ -61,10 +61,10 @@
61
61
  "husky": "4.3.8",
62
62
  "kebab-case": "1.0.0",
63
63
  "lint-staged": "15.2.0",
64
- "prettier": "3.1.0",
64
+ "prettier": "3.1.1",
65
65
  "react": "17.0.2",
66
66
  "semantic-release": "22.0.9",
67
- "stylelint": "16.0.1",
67
+ "stylelint": "16.0.2",
68
68
  "typescript": "5.3.3"
69
69
  },
70
70
  "scripts": {
package/release.config.js DELETED
@@ -1,12 +0,0 @@
1
- module.exports = {
2
- plugins: [
3
- '@semantic-release/commit-analyzer',
4
- '@semantic-release/release-notes-generator',
5
- '@semantic-release/changelog',
6
- '@semantic-release/github',
7
- '@semantic-release/npm',
8
- '@semantic-release/git',
9
- ],
10
- branches: ['master', { name: 'beta', prerelease: true }],
11
- repositoryUrl: 'https://github.com/core-ds/arui-presets-lint.git',
12
- };
package/tsconfig.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2022",
4
- "module": "commonjs",
5
- "strict": true,
6
- "esModuleInterop": true,
7
- "forceConsistentCasingInFileNames": true,
8
- "jsx": "react"
9
- },
10
- "include": ["**/*"]
11
- }