@jeromefitz/semantic 6.0.4 โ 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 +1 -17
- package/dist/branches.cjs +1 -0
- package/dist/branches.d.ts +8 -0
- package/dist/branches.js +1 -0
- package/dist/changelog.config.cjs +1 -0
- package/dist/changelog.config.d.ts +894 -0
- package/dist/changelog.config.js +1 -0
- package/dist/config/release-branch-types/ci.cjs +1 -0
- package/dist/config/release-branch-types/ci.d.ts +3 -0
- package/dist/config/release-branch-types/ci.js +1 -0
- package/dist/config/release-branch-types/feature.cjs +1 -0
- package/dist/config/release-branch-types/feature.d.ts +3 -0
- package/dist/config/release-branch-types/feature.js +1 -0
- package/dist/config/release-branch-types/fix.cjs +1 -0
- package/dist/config/release-branch-types/fix.d.ts +3 -0
- package/dist/config/release-branch-types/fix.js +1 -0
- package/dist/config/release-branch-types/index.cjs +1 -0
- package/{src/config/release-branch-types/index.cjs โ dist/config/release-branch-types/index.d.ts} +8 -12
- package/dist/config/release-branch-types/index.js +1 -0
- package/dist/config/release-branch-types/refactor.cjs +1 -0
- package/dist/config/release-branch-types/refactor.d.ts +3 -0
- package/dist/config/release-branch-types/refactor.js +1 -0
- package/dist/config/release-branch-types/release.cjs +1 -0
- package/dist/config/release-branch-types/release.d.ts +3 -0
- package/dist/config/release-branch-types/release.js +1 -0
- package/dist/index.cjs +74 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +74 -0
- package/dist/release.config.cjs +74 -0
- package/dist/release.config.d.ts +45 -0
- package/dist/release.config.js +74 -0
- package/dist/releaseRules.cjs +1 -0
- package/dist/releaseRules.d.ts +6 -0
- package/dist/releaseRules.js +1 -0
- package/dist/typeSpecs.cjs +73 -0
- package/dist/typeSpecs.d.ts +11 -0
- package/dist/typeSpecs.js +73 -0
- package/package.json +14 -29
- package/release.config.cjs +0 -141
- package/src/branches.cjs +0 -25
- package/src/changelog.config.js +0 -22
- package/src/config/release-branch-types/ci.cjs +0 -3
- package/src/config/release-branch-types/feature.cjs +0 -3
- package/src/config/release-branch-types/refactor.cjs +0 -3
- package/src/config/release-branch-types/release.cjs +0 -3
- package/src/releaseRules.cjs +0 -218
- package/src/typeSpecs.cjs +0 -646
package/release.config.cjs
DELETED
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
const GraphemeSplitter = require('grapheme-splitter')
|
|
2
|
-
const isCI = require('is-ci')
|
|
3
|
-
const _pullAt = require('lodash.pullat/index.js')
|
|
4
|
-
|
|
5
|
-
const { name } = require('./package.json')
|
|
6
|
-
const branches = require('./src/branches.cjs')
|
|
7
|
-
const releaseRules = require('./src/releaseRules.cjs')
|
|
8
|
-
const typeSpecs = require('./src/typeSpecs.cjs')
|
|
9
|
-
|
|
10
|
-
!isCI && require('dotenv').config({ path: '../../.env' })
|
|
11
|
-
|
|
12
|
-
var splitter = new GraphemeSplitter()
|
|
13
|
-
|
|
14
|
-
const parserOpts = {
|
|
15
|
-
headerPattern: /^(.*?)(?:\((.*)\))?:?\s(.*)$/,
|
|
16
|
-
headerCorrespondence: ['type', 'scope', 'subject'],
|
|
17
|
-
noteKeywords: ['๐ฅ๏ธ BREAKING CHANGE', 'BREAKING CHANGE'],
|
|
18
|
-
// referenceActions: typeSpecs.map(({ type }) => type),
|
|
19
|
-
referenceActions: null,
|
|
20
|
-
revertPattern: /^Revert\s"([\s\S]*)"\s*This reverts commit (\w*)\./,
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
const writerOpts = {
|
|
24
|
-
// @todo(complexity) 12
|
|
25
|
-
// eslint-disable-next-line complexity
|
|
26
|
-
transform: (commit, _context) => {
|
|
27
|
-
// let discard = true
|
|
28
|
-
const { type } = commit
|
|
29
|
-
|
|
30
|
-
// Rewrite types
|
|
31
|
-
const typeSpecIndex = typeSpecs.findIndex(
|
|
32
|
-
({ code: c, emoji: e, type: t, value: v }) => {
|
|
33
|
-
if (type === null) return
|
|
34
|
-
return (
|
|
35
|
-
// @hack(semantic-release) strip colon from :type: for stricter comparison
|
|
36
|
-
type.replace(/\:/g, '') === c.replace(/\:/g, '') ||
|
|
37
|
-
type === e ||
|
|
38
|
-
type === t ||
|
|
39
|
-
type === v
|
|
40
|
-
)
|
|
41
|
-
}
|
|
42
|
-
)
|
|
43
|
-
|
|
44
|
-
if (typeSpecIndex === -1) return
|
|
45
|
-
|
|
46
|
-
const typeSpec = typeSpecs[typeSpecIndex]
|
|
47
|
-
|
|
48
|
-
if (!typeSpec.releaseNotes) return
|
|
49
|
-
|
|
50
|
-
commit.type = `${typeSpec.emoji} ${typeSpec.section}`
|
|
51
|
-
commit.typeSpecIndex = typeSpecIndex
|
|
52
|
-
// @semver
|
|
53
|
-
if (typeSpec.semver === 'major' || typeSpec.semver === 'breaking') {
|
|
54
|
-
commit.order = 1
|
|
55
|
-
}
|
|
56
|
-
if (typeSpec.semver === 'minor' || typeSpec.semver === 'feature') {
|
|
57
|
-
commit.order = 3
|
|
58
|
-
}
|
|
59
|
-
if (typeSpec.semver === 'patch') {
|
|
60
|
-
commit.order = 5
|
|
61
|
-
}
|
|
62
|
-
if (typeSpec.semver === null) {
|
|
63
|
-
commit.order = 7
|
|
64
|
-
}
|
|
65
|
-
if (!Boolean(typeSpec.semver)) {
|
|
66
|
-
commit.order = 9
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
if (typeof commit.hash === 'string') {
|
|
70
|
-
commit.hash = commit.hash.substring(0, 7)
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
const subjectTemp = splitter.splitGraphemes(commit.subject)
|
|
74
|
-
const isEmojiMatch = subjectTemp[0] === typeSpec.emoji
|
|
75
|
-
const subject = isEmojiMatch
|
|
76
|
-
? commit.subject
|
|
77
|
-
.replace(_pullAt(subjectTemp, [0]), '')
|
|
78
|
-
.replace(_pullAt(subjectTemp, [0]), '')
|
|
79
|
-
: commit.subject
|
|
80
|
-
|
|
81
|
-
commit.subject = subject
|
|
82
|
-
|
|
83
|
-
return commit
|
|
84
|
-
},
|
|
85
|
-
// groupBy: 'order',
|
|
86
|
-
commitGroupsSort: ['order'],
|
|
87
|
-
commitsSort: ['order'],
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// console.dir(`parserOpts`)
|
|
91
|
-
// console.dir(parserOpts)
|
|
92
|
-
// console.dir(`writerOpts`)
|
|
93
|
-
// console.dir(writerOpts)
|
|
94
|
-
|
|
95
|
-
const config = {
|
|
96
|
-
branches,
|
|
97
|
-
// ci: false,
|
|
98
|
-
// debug: true,
|
|
99
|
-
// dryRun: true,
|
|
100
|
-
extends: ['semantic-release-commit-filter'],
|
|
101
|
-
plugins: [
|
|
102
|
-
[
|
|
103
|
-
'@semantic-release/commit-analyzer',
|
|
104
|
-
{
|
|
105
|
-
parserOpts,
|
|
106
|
-
releaseRules,
|
|
107
|
-
},
|
|
108
|
-
],
|
|
109
|
-
[
|
|
110
|
-
'@semantic-release/release-notes-generator',
|
|
111
|
-
{
|
|
112
|
-
parserOpts,
|
|
113
|
-
writerOpts,
|
|
114
|
-
},
|
|
115
|
-
],
|
|
116
|
-
[
|
|
117
|
-
'@semantic-release/npm',
|
|
118
|
-
{
|
|
119
|
-
npmPublish: true,
|
|
120
|
-
tarballDir: 'release',
|
|
121
|
-
},
|
|
122
|
-
],
|
|
123
|
-
[
|
|
124
|
-
'@semantic-release/github',
|
|
125
|
-
{
|
|
126
|
-
assets: 'release/*.tgz',
|
|
127
|
-
},
|
|
128
|
-
],
|
|
129
|
-
[
|
|
130
|
-
'@semantic-release/exec',
|
|
131
|
-
{
|
|
132
|
-
prepareCmd:
|
|
133
|
-
'echo sh ./scripts/postSemanticRelease.sh ${nextRelease.version} ${nextRelease.channel} ${nextRelease.gitHead} ${nextRelease.gitTag}',
|
|
134
|
-
},
|
|
135
|
-
],
|
|
136
|
-
],
|
|
137
|
-
//
|
|
138
|
-
tagFormat: `${name}@\${version}`,
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
module.exports = config
|
package/src/branches.cjs
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
const _map = require('lodash.map/index.js')
|
|
2
|
-
|
|
3
|
-
const releaseBranchTypes = require('./config/release-branch-types/index.cjs')
|
|
4
|
-
|
|
5
|
-
const branchTypes = _map(
|
|
6
|
-
releaseBranchTypes,
|
|
7
|
-
(releaseBranchType, releaseBranchTypeIndex) => {
|
|
8
|
-
return _map(releaseBranchType, (branchType) => {
|
|
9
|
-
return (
|
|
10
|
-
!!branchType && {
|
|
11
|
-
name: `${releaseBranchTypeIndex}/${branchType}`,
|
|
12
|
-
prerelease: branchType,
|
|
13
|
-
}
|
|
14
|
-
)
|
|
15
|
-
})[0]
|
|
16
|
-
}
|
|
17
|
-
).filter((branchType) => !!branchType)
|
|
18
|
-
|
|
19
|
-
const branches = [
|
|
20
|
-
{ name: 'main' },
|
|
21
|
-
{ name: 'canary', prerelease: 'canary' },
|
|
22
|
-
...branchTypes,
|
|
23
|
-
]
|
|
24
|
-
|
|
25
|
-
module.exports = branches
|
package/src/changelog.config.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import config from '../../git-cz/dist/themes/gitmoji'
|
|
2
|
-
|
|
3
|
-
const commit = {
|
|
4
|
-
...config.commit,
|
|
5
|
-
maxMessageLength: 75,
|
|
6
|
-
questions: [
|
|
7
|
-
'commitScopes',
|
|
8
|
-
'commitTypes',
|
|
9
|
-
'commitSubject',
|
|
10
|
-
'commitBodyFlag',
|
|
11
|
-
'commitBody',
|
|
12
|
-
],
|
|
13
|
-
scopes: [],
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
const branch = {
|
|
17
|
-
...config.branch,
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
const changelog = { ...config, branch, commit }
|
|
21
|
-
|
|
22
|
-
export default changelog
|
package/src/releaseRules.cjs
DELETED
|
@@ -1,218 +0,0 @@
|
|
|
1
|
-
const releaseRules = [
|
|
2
|
-
{ release: 'patch', type: ':wheelchair' },
|
|
3
|
-
{ release: 'patch', type: 'access' },
|
|
4
|
-
{ release: 'patch', type: 'โฟ๏ธ' },
|
|
5
|
-
{ release: 'patch', type: ':chart_with_upwards_trend' },
|
|
6
|
-
{ release: 'patch', type: 'analytics' },
|
|
7
|
-
{ release: 'patch', type: '๐' },
|
|
8
|
-
{ release: 'patch', type: ':dizzy' },
|
|
9
|
-
{ release: 'patch', type: 'animation' },
|
|
10
|
-
{ release: 'patch', type: '๐ซ' },
|
|
11
|
-
{ release: null, type: ':building_construction' },
|
|
12
|
-
{ release: null, type: 'arch' },
|
|
13
|
-
{ release: null, type: '๐๏ธ' },
|
|
14
|
-
{ release: 'patch', type: ':bento' },
|
|
15
|
-
{ release: 'patch', type: 'assets' },
|
|
16
|
-
{ release: 'patch', type: '๐ฑ' },
|
|
17
|
-
{ release: null, type: ':beers' },
|
|
18
|
-
{ release: null, type: 'beer' },
|
|
19
|
-
{ release: null, type: '๐ป' },
|
|
20
|
-
{ release: 'major', type: ':boom' },
|
|
21
|
-
{ release: 'major', type: 'breaking' },
|
|
22
|
-
{ release: 'major', type: '๐ฅ' },
|
|
23
|
-
{ release: null, type: ':hammer' },
|
|
24
|
-
{ release: null, type: 'build' },
|
|
25
|
-
{ release: null, type: '๐จ' },
|
|
26
|
-
{ release: 'patch', type: ':goal_net' },
|
|
27
|
-
{ release: 'patch', type: 'catch' },
|
|
28
|
-
{ release: 'patch', type: '๐ฅ
' },
|
|
29
|
-
{ release: null, type: ':computer_disk' },
|
|
30
|
-
{ release: null, type: 'chore' },
|
|
31
|
-
{ release: null, type: '๐ฝ๏ธ' },
|
|
32
|
-
{ release: null, type: ':construction_worker' },
|
|
33
|
-
{ release: null, type: 'ci' },
|
|
34
|
-
{ release: null, type: '๐ท' },
|
|
35
|
-
{ release: 'patch', type: ':wastebasket' },
|
|
36
|
-
{ release: 'patch', type: 'clean' },
|
|
37
|
-
{ release: 'patch', type: '๐๏ธ' },
|
|
38
|
-
{ release: 'patch', type: ':alien' },
|
|
39
|
-
{ release: 'patch', type: 'compat' },
|
|
40
|
-
{ release: 'patch', type: '๐ฝ๏ธ' },
|
|
41
|
-
{ release: 'patch', type: ':wrench' },
|
|
42
|
-
{ release: 'patch', type: 'config' },
|
|
43
|
-
{ release: 'patch', type: '๐ง' },
|
|
44
|
-
{ release: null, type: ':busts_in_silhouette' },
|
|
45
|
-
{ release: null, type: 'contrib-add' },
|
|
46
|
-
{ release: null, type: '๐ฅ' },
|
|
47
|
-
{ release: null, type: ':monocle_face' },
|
|
48
|
-
{ release: null, type: 'data' },
|
|
49
|
-
{ release: null, type: '๐ง' },
|
|
50
|
-
{ release: 'patch', type: ':card_file_box' },
|
|
51
|
-
{ release: 'patch', type: 'db' },
|
|
52
|
-
{ release: 'patch', type: '๐๏ธ' },
|
|
53
|
-
{ release: 'patch', type: ':heavy_plus_sign' },
|
|
54
|
-
{ release: 'patch', type: 'dep-add' },
|
|
55
|
-
{ release: 'patch', type: 'โ' },
|
|
56
|
-
{ release: 'patch', type: ':heavy_minus_sign' },
|
|
57
|
-
{ release: 'patch', type: 'dep-rm' },
|
|
58
|
-
{ release: 'patch', type: 'โ' },
|
|
59
|
-
{ release: 'patch', type: ':package' },
|
|
60
|
-
{ release: 'patch', type: 'dep-up' },
|
|
61
|
-
{ release: 'patch', type: '๐ฆ๏ธ' },
|
|
62
|
-
{ release: null, type: ':rocket' },
|
|
63
|
-
{ release: null, type: 'deploy' },
|
|
64
|
-
{ release: null, type: '๐' },
|
|
65
|
-
{ release: null, type: ':memo' },
|
|
66
|
-
{ release: null, type: 'docs' },
|
|
67
|
-
{ release: null, type: '๐' },
|
|
68
|
-
{ release: null, type: ':bulb' },
|
|
69
|
-
{ release: null, type: 'docs-code' },
|
|
70
|
-
{ release: null, type: '๐ก' },
|
|
71
|
-
{ release: 'patch', type: ':arrow_down' },
|
|
72
|
-
{ release: 'patch', type: 'downgrade' },
|
|
73
|
-
{ release: 'patch', type: 'โฌ๏ธ' },
|
|
74
|
-
{ release: 'patch', type: ':egg' },
|
|
75
|
-
{ release: 'patch', type: 'egg' },
|
|
76
|
-
{ release: 'patch', type: '๐ฅ' },
|
|
77
|
-
{ release: 'patch', type: ':alembic' },
|
|
78
|
-
{ release: 'patch', type: 'experiment' },
|
|
79
|
-
{ release: 'patch', type: 'โ๏ธ' },
|
|
80
|
-
{ release: 'minor', type: ':sparkles' },
|
|
81
|
-
{ release: 'minor', type: 'feat' },
|
|
82
|
-
{ release: 'minor', type: 'โจ' },
|
|
83
|
-
{ release: 'patch', type: ':bug' },
|
|
84
|
-
{ release: 'patch', type: 'fix' },
|
|
85
|
-
{ release: 'patch', type: '๐' },
|
|
86
|
-
{ release: null, type: ':green_heart' },
|
|
87
|
-
{ release: null, type: 'fix-ci' },
|
|
88
|
-
{ release: null, type: '๐' },
|
|
89
|
-
{ release: 'patch', type: ':triangular_flag_on_post' },
|
|
90
|
-
{ release: 'patch', type: 'flags' },
|
|
91
|
-
{ release: 'patch', type: '๐ฉ' },
|
|
92
|
-
{ release: null, type: ':stethoscope' },
|
|
93
|
-
{ release: null, type: 'healthcheck' },
|
|
94
|
-
{ release: null, type: '๐ฉบ' },
|
|
95
|
-
{ release: 'patch', type: ':ambulance' },
|
|
96
|
-
{ release: 'patch', type: 'hotfix' },
|
|
97
|
-
{ release: 'patch', type: '๐๏ธ' },
|
|
98
|
-
{ release: 'patch', type: ':globe_with_meridians' },
|
|
99
|
-
{ release: 'patch', type: 'i18n' },
|
|
100
|
-
{ release: 'patch', type: '๐' },
|
|
101
|
-
{ release: null, type: ':see_no_evil' },
|
|
102
|
-
{ release: null, type: 'ignore' },
|
|
103
|
-
{ release: null, type: '๐' },
|
|
104
|
-
{ release: null, type: ':brick' },
|
|
105
|
-
{ release: null, type: 'inf' },
|
|
106
|
-
{ release: null, type: '๐งฑ' },
|
|
107
|
-
{ release: null, type: ':tada' },
|
|
108
|
-
{ release: null, type: 'init' },
|
|
109
|
-
{ release: null, type: '๐' },
|
|
110
|
-
{ release: 'patch', type: ':iphone' },
|
|
111
|
-
{ release: 'patch', type: 'iphone' },
|
|
112
|
-
{ release: 'patch', type: '๐ฑ' },
|
|
113
|
-
{ release: null, type: ':page_facing_up' },
|
|
114
|
-
{ release: null, type: 'license' },
|
|
115
|
-
{ release: null, type: '๐' },
|
|
116
|
-
{ release: null, type: ':rotating_light' },
|
|
117
|
-
{ release: null, type: 'lint' },
|
|
118
|
-
{ release: null, type: '๐จ' },
|
|
119
|
-
{ release: null, type: ':loud_sound' },
|
|
120
|
-
{ release: null, type: 'log-add' },
|
|
121
|
-
{ release: null, type: '๐' },
|
|
122
|
-
{ release: null, type: ':mute' },
|
|
123
|
-
{ release: null, type: 'log-rm' },
|
|
124
|
-
{ release: null, type: '๐' },
|
|
125
|
-
{ release: 'patch', type: ':necktie' },
|
|
126
|
-
{ release: 'patch', type: 'logic' },
|
|
127
|
-
{ release: 'patch', type: '๐' },
|
|
128
|
-
{ release: null, type: ':twisted_rightwards_arrows' },
|
|
129
|
-
{ release: null, type: 'merge' },
|
|
130
|
-
{ release: null, type: '๐' },
|
|
131
|
-
{ release: null, type: ':clown_face' },
|
|
132
|
-
{ release: null, type: 'mock' },
|
|
133
|
-
{ release: null, type: '๐คก' },
|
|
134
|
-
{ release: null, type: ':truck' },
|
|
135
|
-
{ release: null, type: 'mv' },
|
|
136
|
-
{ release: null, type: '๐' },
|
|
137
|
-
{ release: 'patch', type: ':adhesive_bandage' },
|
|
138
|
-
{ release: 'patch', type: 'patch' },
|
|
139
|
-
{ release: 'patch', type: '๐ฉน' },
|
|
140
|
-
{ release: 'patch', type: ':zap' },
|
|
141
|
-
{ release: 'patch', type: 'perf' },
|
|
142
|
-
{ release: 'patch', type: 'โก๏ธ' },
|
|
143
|
-
{ release: null, type: ':poop' },
|
|
144
|
-
{ release: null, type: 'poo' },
|
|
145
|
-
{ release: null, type: '๐ฉ' },
|
|
146
|
-
{ release: null, type: ':fire' },
|
|
147
|
-
{ release: null, type: 'prune' },
|
|
148
|
-
{ release: null, type: '๐ฅ' },
|
|
149
|
-
{ release: 'patch', type: ':pushpin' },
|
|
150
|
-
{ release: 'patch', type: 'pushpin' },
|
|
151
|
-
{ release: 'patch', type: '๐' },
|
|
152
|
-
{ release: null, type: ':recycle' },
|
|
153
|
-
{ release: null, type: 'refactor' },
|
|
154
|
-
{ release: null, type: 'โป๏ธ' },
|
|
155
|
-
{ release: null, type: ':bookmark' },
|
|
156
|
-
{ release: null, type: 'release' },
|
|
157
|
-
{ release: null, type: '๐' },
|
|
158
|
-
{ release: 'patch', type: ':rewind' },
|
|
159
|
-
{ release: 'patch', type: 'revert' },
|
|
160
|
-
{ release: 'patch', type: 'โช๏ธ' },
|
|
161
|
-
{ release: null, type: ':coffin' },
|
|
162
|
-
{ release: null, type: 'rip' },
|
|
163
|
-
{ release: null, type: 'โฐ๏ธ' },
|
|
164
|
-
{ release: 'patch', type: ':passport_control' },
|
|
165
|
-
{ release: 'patch', type: 'roles' },
|
|
166
|
-
{ release: 'patch', type: '๐' },
|
|
167
|
-
{ release: null, type: ':fast_forward' },
|
|
168
|
-
{ release: null, type: 'rollforward' },
|
|
169
|
-
{ release: null, type: 'โฉ๏ธ' },
|
|
170
|
-
{ release: 'patch', type: ':rocket' },
|
|
171
|
-
{ release: 'patch', type: 'run-build' },
|
|
172
|
-
{ release: 'patch', type: '๐๏ธ' },
|
|
173
|
-
{ release: 'patch', type: ':lock' },
|
|
174
|
-
{ release: 'patch', type: 'security' },
|
|
175
|
-
{ release: 'patch', type: '๐๏ธ' },
|
|
176
|
-
{ release: null, type: ':seedling' },
|
|
177
|
-
{ release: null, type: 'seed' },
|
|
178
|
-
{ release: null, type: '๐ฑ' },
|
|
179
|
-
{ release: 'patch', type: ':mag' },
|
|
180
|
-
{ release: 'patch', type: 'seo' },
|
|
181
|
-
{ release: 'patch', type: '๐๏ธ' },
|
|
182
|
-
{ release: null, type: ':camera_flash' },
|
|
183
|
-
{ release: null, type: 'snapshot' },
|
|
184
|
-
{ release: null, type: '๐ธ' },
|
|
185
|
-
{ release: null, type: ':art' },
|
|
186
|
-
{ release: null, type: 'style' },
|
|
187
|
-
{ release: null, type: '๐จ' },
|
|
188
|
-
{ release: null, type: ':white_check_mark' },
|
|
189
|
-
{ release: null, type: 'test' },
|
|
190
|
-
{ release: null, type: 'โ
' },
|
|
191
|
-
{ release: null, type: ':test_tube' },
|
|
192
|
-
{ release: null, type: 'test-fail' },
|
|
193
|
-
{ release: null, type: '๐งช' },
|
|
194
|
-
{ release: 'patch', type: ':speech_balloon' },
|
|
195
|
-
{ release: 'patch', type: 'texts' },
|
|
196
|
-
{ release: 'patch', type: '๐ฌ' },
|
|
197
|
-
{ release: 'patch', type: ':label' },
|
|
198
|
-
{ release: 'patch', type: 'types' },
|
|
199
|
-
{ release: 'patch', type: '๐ท๏ธ' },
|
|
200
|
-
{ release: 'patch', type: ':pencil2' },
|
|
201
|
-
{ release: 'patch', type: 'typo' },
|
|
202
|
-
{ release: 'patch', type: 'โ๏ธ' },
|
|
203
|
-
{ release: 'patch', type: ':lipstick' },
|
|
204
|
-
{ release: 'patch', type: 'ui' },
|
|
205
|
-
{ release: 'patch', type: '๐' },
|
|
206
|
-
{ release: 'patch', type: ':arrow_up' },
|
|
207
|
-
{ release: 'patch', type: 'upgrade' },
|
|
208
|
-
{ release: 'patch', type: 'โฌ๏ธ' },
|
|
209
|
-
{ release: 'patch', type: ':children_crossing' },
|
|
210
|
-
{ release: 'patch', type: 'ux' },
|
|
211
|
-
{ release: 'patch', type: '๐ธ' },
|
|
212
|
-
{ release: null, type: ':construction' },
|
|
213
|
-
{ release: null, type: 'wip' },
|
|
214
|
-
{ release: null, type: '๐ง' },
|
|
215
|
-
]
|
|
216
|
-
|
|
217
|
-
// export default releaseRules
|
|
218
|
-
module.exports = releaseRules
|