@itcase/config 1.6.32 → 1.6.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/config",
3
- "version": "1.6.32",
3
+ "version": "1.6.33",
4
4
  "author": "ITCase",
5
5
  "description": "ITCase Config ",
6
6
  "engines": {
@@ -84,8 +84,19 @@
84
84
  "postcss-unitlist": "^1.0.4",
85
85
  "postcss-unroot": "^1.0.2",
86
86
  "postcss-url": "^10.1.3",
87
- "postcss-urlrewrite": "^0.3.0",
88
- "semantic-release": "^24.2.9"
87
+ "@rollup/plugin-alias": "^6.0.0",
88
+ "@rollup/plugin-babel": "^6.1.0",
89
+ "@rollup/plugin-image": "^3.0.3",
90
+ "@rollup/plugin-json": "^6.1.0",
91
+ "@rollup/plugin-node-resolve": "^16.0.3",
92
+ "@rollup/plugin-terser": "^0.4.4",
93
+ "@rollup/plugin-typescript": "^12.3.0",
94
+ "rollup-plugin-copy": "^3.5.0",
95
+ "rollup-plugin-dts": "^6.3.0",
96
+ "rollup-plugin-peer-deps-external": "^2.2.4",
97
+ "rollup-preserve-directives": "^1.1.3",
98
+ "semantic-release": "^25.0.2",
99
+ "postcss-urlrewrite": "^0.3.0"
89
100
  },
90
101
  "devDependencies": {
91
102
  "@itcase/lint": "^1.1.78",
@@ -14,7 +14,22 @@ const releaseNotesGeneratorConfig = {
14
14
  presetConfig: {
15
15
  types: releaseNotesTypes,
16
16
  },
17
- writerOpts: { commitsSort: COMMITS_SORT },
17
+ writerOpts: {
18
+ commitsSort: COMMITS_SORT,
19
+ commitFilter: (commit) => {
20
+ // Фильтруем merge коммиты
21
+ if (
22
+ !commit.type &&
23
+ commit.subject &&
24
+ /^Merge (branch|pull request|commit|remote-tracking|.*into|.*of)/i.test(
25
+ commit.subject,
26
+ )
27
+ ) {
28
+ return false
29
+ }
30
+ return true
31
+ },
32
+ },
18
33
  }
19
34
 
20
35
  const commonPlugins = {