@itcase/config 1.6.23 → 1.6.25

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
@@ -16,6 +16,8 @@ npm install --save-dev @itcase/config
16
16
  - `commitlint/indexProject.js` — для разработки
17
17
  - `commitlint/indexRelease.js` — для релизных веток
18
18
 
19
+ - **Husky** — husky-hooks
20
+
19
21
  - **Lint-staged** — запуск линтеров для измененных файлов
20
22
  - `lint-staged/index.js` — базовая конфигурация
21
23
  - `lint-staged-ts/index.js` — с проверкой типов TypeScript
@@ -12,7 +12,17 @@ const commitlintProject = {
12
12
  'type-enum': [
13
13
  2,
14
14
  'always',
15
- ['feat', 'fix', 'refactor', 'docs', 'test', 'ci', 'deps', 'other'],
15
+ [
16
+ 'feat',
17
+ 'fix',
18
+ 'refactor',
19
+ 'docs',
20
+ 'story',
21
+ 'test',
22
+ 'ci',
23
+ 'deps',
24
+ 'other',
25
+ ],
16
26
  ],
17
27
  'body-empty': [1, 'always'],
18
28
  'subject-case': [
@@ -50,6 +60,11 @@ const commitlintProject = {
50
60
  "Is for code changes that don't add features or fix bugs.",
51
61
  emoji: '📦',
52
62
  },
63
+ story: {
64
+ title: 'Storybook',
65
+ description: 'Stories for components and Mock data',
66
+ emoji: '🦐',
67
+ },
53
68
  docs: {
54
69
  title: 'Documentation',
55
70
  description: 'Documentation only changes',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/config",
3
- "version": "1.6.23",
3
+ "version": "1.6.25",
4
4
  "author": "ITCase",
5
5
  "description": "ITCase Config ",
6
6
  "engines": {
@@ -69,7 +69,7 @@
69
69
  "postcss-nested-ancestors": "^3.0.0",
70
70
  "postcss-normalize": "^13.0.1",
71
71
  "postcss-prepend-imports": "^1.0.1",
72
- "postcss-preset-env": "^10.6.1",
72
+ "postcss-preset-env": "^11.1.1",
73
73
  "postcss-pxtorem": "^6.1.0",
74
74
  "postcss-sort-media-queries": "^5.2.0",
75
75
  "postcss-unit": "^0.0.3",
@@ -86,8 +86,8 @@
86
86
  "husky": "^9.1.7",
87
87
  "inquirer": "^13.2.0",
88
88
  "lint-staged": "^16.2.7",
89
- "prettier": "^3.7.4",
90
- "stylelint": "^16.26.1",
89
+ "prettier": "^3.8.0",
90
+ "stylelint": "^17.0.0",
91
91
  "typescript": "^5.9.3"
92
92
  }
93
93
  }