-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrelease.config.js
More file actions
78 lines (75 loc) · 1.79 KB
/
release.config.js
File metadata and controls
78 lines (75 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* eslint-disable @typescript-eslint/no-var-requires */
const generateConfig = require('@x-wp/semantic-release-config').default;
const config = generateConfig({
branches: ['master', { name: 'beta', prerelease: true }],
type: 'plugin',
name: 'Serbian Addons for WooCommerce',
slug: 'serbian-addons-for-woocommerce',
wp: {
withVersionFile: true,
withAssets: true,
withReadme: true,
},
});
config.plugins[0] = [
'@semantic-release/commit-analyzer',
{
preset: 'conventionalcommits',
releaseRules: [
{ type: 'chore', release: false },
{ type: 'perf', release: 'patch' },
{ type: 'compat', release: 'patch' },
{ type: 'refactor', release: 'patch' },
{ type: 'style', release: 'patch' },
],
parserOpts: {
noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES'],
},
},
];
config.plugins[1] = [
'@semantic-release/release-notes-generator',
{
preset: 'conventionalcommits',
presetConfig: {
types: [
{
type: 'feat',
section: ':sparkles: Features',
hidden: false,
},
{
type: 'fix',
section: ':bug: Bug Fixes',
hidden: false,
},
{
type: 'compat',
section: ':gear: Compatibility',
hidden: false,
},
{
type: 'refactor',
section: ':recycle: Refactor',
hidden: false,
},
{
type: 'style',
section: ':art: Code style',
hidden: false,
},
{
type: 'perf',
section: ':rocket: Performance',
hidden: false,
},
{
type: 'chore',
section: ':wrench: Maintenance',
hidden: false,
},
],
},
},
];
module.exports = config;