@programinglive/commiter 1.0.8 โ 1.0.10
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/.github/ISSUE_TEMPLATE/bug_report.md +28 -28
- package/.github/ISSUE_TEMPLATE/config.yml +5 -5
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -20
- package/.github/PULL_REQUEST_TEMPLATE.md +24 -24
- package/.github/workflows/publish.yml +34 -0
- package/CHANGELOG.md +52 -43
- package/CODE_OF_CONDUCT.md +36 -36
- package/LICENSE +21 -21
- package/PUBLISH.md +142 -116
- package/README.md +181 -181
- package/SECURITY.md +30 -30
- package/commitlint.config.cjs +4 -4
- package/index.js +148 -148
- package/package.json +94 -94
package/commitlint.config.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
extends: ['@commitlint/config-conventional'],
|
|
3
|
-
ignores: [(message) => message.startsWith('chore(release):')]
|
|
4
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
extends: ['@commitlint/config-conventional'],
|
|
3
|
+
ignores: [(message) => message.startsWith('chore(release):')]
|
|
4
|
+
};
|
package/index.js
CHANGED
|
@@ -1,148 +1,148 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Commiter - Commit convention tooling for standard-version releases
|
|
5
|
-
*
|
|
6
|
-
* This package helps enforce conventional commits and automate releases
|
|
7
|
-
* with beautiful changelogs featuring icons for each commit type.
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
const { execSync } = require('child_process');
|
|
11
|
-
const fs = require('fs');
|
|
12
|
-
const path = require('path');
|
|
13
|
-
|
|
14
|
-
function ensureSafeTestScript(scripts = {}) {
|
|
15
|
-
const defaultFailingTestScript = 'echo "Error: no test specified" && exit 1';
|
|
16
|
-
if (!scripts.test || scripts.test === defaultFailingTestScript) {
|
|
17
|
-
scripts.test = 'echo "No tests specified"';
|
|
18
|
-
}
|
|
19
|
-
return scripts;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
function setupCommiter() {
|
|
23
|
-
console.log('๐ Setting up Commiter...\n');
|
|
24
|
-
|
|
25
|
-
// Check if package.json exists
|
|
26
|
-
if (!fs.existsSync('package.json')) {
|
|
27
|
-
console.error('โ Error: package.json not found. Please run this in a Node.js project directory.');
|
|
28
|
-
process.exit(1);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
try {
|
|
32
|
-
// Install dependencies
|
|
33
|
-
console.log('๐ฆ Installing dependencies...');
|
|
34
|
-
execSync('npm install --save-dev standard-version @commitlint/cli @commitlint/config-conventional husky', {
|
|
35
|
-
stdio: 'inherit'
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
// Read package.json
|
|
39
|
-
const packageJsonPath = path.join(process.cwd(), 'package.json');
|
|
40
|
-
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
|
|
41
|
-
|
|
42
|
-
packageJson.scripts = ensureSafeTestScript(packageJson.scripts || {});
|
|
43
|
-
// Add scripts
|
|
44
|
-
packageJson.scripts.prepare = 'husky';
|
|
45
|
-
packageJson.scripts.release = 'node scripts/release.js';
|
|
46
|
-
packageJson.scripts['release:major'] = 'node scripts/release.js major';
|
|
47
|
-
packageJson.scripts['release:minor'] = 'node scripts/release.js minor';
|
|
48
|
-
packageJson.scripts['release:patch'] = 'node scripts/release.js patch';
|
|
49
|
-
|
|
50
|
-
// Add standard-version config
|
|
51
|
-
packageJson['standard-version'] = {
|
|
52
|
-
releaseCommitMessageFormat: 'chore(release): {{currentTag}} ๐',
|
|
53
|
-
types: [
|
|
54
|
-
{ type: 'feat', section: 'โจ Features' },
|
|
55
|
-
{ type: 'fix', section: '๐ Bug Fixes' },
|
|
56
|
-
{ type: 'perf', section: 'โก Performance' },
|
|
57
|
-
{ type: 'refactor', section: 'โป๏ธ Refactors' },
|
|
58
|
-
{ type: 'docs', section: '๐ Documentation' },
|
|
59
|
-
{ type: 'style', section: '๐ Styles' },
|
|
60
|
-
{ type: 'test', section: 'โ
Tests' },
|
|
61
|
-
{ type: 'build', section: '๐๏ธ Build System' },
|
|
62
|
-
{ type: 'ci', section: '๐ท Continuous Integration' },
|
|
63
|
-
{ type: 'chore', section: '๐งน Chores' },
|
|
64
|
-
{ type: 'revert', section: 'โช Reverts' }
|
|
65
|
-
]
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
// Write updated package.json
|
|
69
|
-
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + '\n');
|
|
70
|
-
|
|
71
|
-
// Create release helper script
|
|
72
|
-
console.log('๐ ๏ธ Creating release helper script...');
|
|
73
|
-
const releaseScriptDir = path.join(process.cwd(), 'scripts');
|
|
74
|
-
if (!fs.existsSync(releaseScriptDir)) {
|
|
75
|
-
fs.mkdirSync(releaseScriptDir, { recursive: true });
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
const releaseScriptPath = path.join(releaseScriptDir, 'release.js');
|
|
79
|
-
const releaseScriptSource = path.join(__dirname, 'scripts', 'release.js');
|
|
80
|
-
const releaseScriptContent = fs.readFileSync(releaseScriptSource, 'utf8');
|
|
81
|
-
|
|
82
|
-
fs.writeFileSync(releaseScriptPath, releaseScriptContent + '\n');
|
|
83
|
-
try {
|
|
84
|
-
fs.chmodSync(releaseScriptPath, 0o755);
|
|
85
|
-
} catch (error) {
|
|
86
|
-
// Ignore chmod errors on non-POSIX systems
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
// Determine commitlint config format based on project module type
|
|
90
|
-
const isEsmProject = packageJson.type === 'module';
|
|
91
|
-
const commitlintConfigFile = isEsmProject ? 'commitlint.config.js' : 'commitlint.config.cjs';
|
|
92
|
-
const commitlintConfigContent = isEsmProject
|
|
93
|
-
? `export default {
|
|
94
|
-
extends: ['@commitlint/config-conventional'],
|
|
95
|
-
ignores: [(message) => message.startsWith('chore(release):')]
|
|
96
|
-
}\n`
|
|
97
|
-
: `module.exports = {
|
|
98
|
-
extends: ['@commitlint/config-conventional'],
|
|
99
|
-
ignores: [(message) => message.startsWith('chore(release):')]
|
|
100
|
-
}\n`;
|
|
101
|
-
|
|
102
|
-
const legacyCommitlintConfigFile = isEsmProject ? 'commitlint.config.cjs' : 'commitlint.config.js';
|
|
103
|
-
if (fs.existsSync(legacyCommitlintConfigFile)) {
|
|
104
|
-
fs.rmSync(legacyCommitlintConfigFile);
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
console.log(`โ๏ธ Creating commitlint config (${commitlintConfigFile})...`);
|
|
108
|
-
fs.writeFileSync(commitlintConfigFile, commitlintConfigContent);
|
|
109
|
-
|
|
110
|
-
// Initialize Husky
|
|
111
|
-
console.log('๐ถ Setting up Husky...');
|
|
112
|
-
execSync('npx husky init', { stdio: 'inherit' });
|
|
113
|
-
|
|
114
|
-
// Create commit-msg hook
|
|
115
|
-
const huskyDir = path.join(process.cwd(), '.husky');
|
|
116
|
-
if (!fs.existsSync(huskyDir)) {
|
|
117
|
-
fs.mkdirSync(huskyDir, { recursive: true });
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
const commitMsgHook = `#!/usr/bin/env sh
|
|
121
|
-
|
|
122
|
-
npx --no -- commitlint --edit "$1"
|
|
123
|
-
`;
|
|
124
|
-
fs.writeFileSync(path.join(huskyDir, 'commit-msg'), commitMsgHook);
|
|
125
|
-
fs.chmodSync(path.join(huskyDir, 'commit-msg'), 0o755);
|
|
126
|
-
|
|
127
|
-
console.log('\nโ
Commiter setup complete!\n');
|
|
128
|
-
console.log('๐ Available commands:');
|
|
129
|
-
console.log(' npm run release major - Create a major release (1.0.0 โ 2.0.0)');
|
|
130
|
-
console.log(' npm run release minor - Create a minor release (1.0.0 โ 1.1.0)');
|
|
131
|
-
console.log(' npm run release patch - Create a patch release (1.0.0 โ 1.0.1)');
|
|
132
|
-
console.log(' npm run release - Auto-detect version bump');
|
|
133
|
-
console.log(' npm run release -- --prerelease beta - Create a beta prerelease\n');
|
|
134
|
-
console.log('๐ฏ Commit format: type(scope): subject');
|
|
135
|
-
console.log(' Example: feat(auth): add user login\n');
|
|
136
|
-
|
|
137
|
-
} catch (error) {
|
|
138
|
-
console.error('โ Error during setup:', error.message);
|
|
139
|
-
process.exit(1);
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// Run setup if called directly
|
|
144
|
-
if (require.main === module) {
|
|
145
|
-
setupCommiter();
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
module.exports = { setupCommiter, ensureSafeTestScript };
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Commiter - Commit convention tooling for standard-version releases
|
|
5
|
+
*
|
|
6
|
+
* This package helps enforce conventional commits and automate releases
|
|
7
|
+
* with beautiful changelogs featuring icons for each commit type.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
const { execSync } = require('child_process');
|
|
11
|
+
const fs = require('fs');
|
|
12
|
+
const path = require('path');
|
|
13
|
+
|
|
14
|
+
function ensureSafeTestScript(scripts = {}) {
|
|
15
|
+
const defaultFailingTestScript = 'echo "Error: no test specified" && exit 1';
|
|
16
|
+
if (!scripts.test || scripts.test === defaultFailingTestScript) {
|
|
17
|
+
scripts.test = 'echo "No tests specified"';
|
|
18
|
+
}
|
|
19
|
+
return scripts;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function setupCommiter() {
|
|
23
|
+
console.log('๐ Setting up Commiter...\n');
|
|
24
|
+
|
|
25
|
+
// Check if package.json exists
|
|
26
|
+
if (!fs.existsSync('package.json')) {
|
|
27
|
+
console.error('โ Error: package.json not found. Please run this in a Node.js project directory.');
|
|
28
|
+
process.exit(1);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
try {
|
|
32
|
+
// Install dependencies
|
|
33
|
+
console.log('๐ฆ Installing dependencies...');
|
|
34
|
+
execSync('npm install --save-dev standard-version @commitlint/cli @commitlint/config-conventional husky', {
|
|
35
|
+
stdio: 'inherit'
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
// Read package.json
|
|
39
|
+
const packageJsonPath = path.join(process.cwd(), 'package.json');
|
|
40
|
+
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
|
|
41
|
+
|
|
42
|
+
packageJson.scripts = ensureSafeTestScript(packageJson.scripts || {});
|
|
43
|
+
// Add scripts
|
|
44
|
+
packageJson.scripts.prepare = 'husky';
|
|
45
|
+
packageJson.scripts.release = 'node scripts/release.js';
|
|
46
|
+
packageJson.scripts['release:major'] = 'node scripts/release.js major';
|
|
47
|
+
packageJson.scripts['release:minor'] = 'node scripts/release.js minor';
|
|
48
|
+
packageJson.scripts['release:patch'] = 'node scripts/release.js patch';
|
|
49
|
+
|
|
50
|
+
// Add standard-version config
|
|
51
|
+
packageJson['standard-version'] = {
|
|
52
|
+
releaseCommitMessageFormat: 'chore(release): {{currentTag}} ๐',
|
|
53
|
+
types: [
|
|
54
|
+
{ type: 'feat', section: 'โจ Features' },
|
|
55
|
+
{ type: 'fix', section: '๐ Bug Fixes' },
|
|
56
|
+
{ type: 'perf', section: 'โก Performance' },
|
|
57
|
+
{ type: 'refactor', section: 'โป๏ธ Refactors' },
|
|
58
|
+
{ type: 'docs', section: '๐ Documentation' },
|
|
59
|
+
{ type: 'style', section: '๐ Styles' },
|
|
60
|
+
{ type: 'test', section: 'โ
Tests' },
|
|
61
|
+
{ type: 'build', section: '๐๏ธ Build System' },
|
|
62
|
+
{ type: 'ci', section: '๐ท Continuous Integration' },
|
|
63
|
+
{ type: 'chore', section: '๐งน Chores' },
|
|
64
|
+
{ type: 'revert', section: 'โช Reverts' }
|
|
65
|
+
]
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
// Write updated package.json
|
|
69
|
+
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + '\n');
|
|
70
|
+
|
|
71
|
+
// Create release helper script
|
|
72
|
+
console.log('๐ ๏ธ Creating release helper script...');
|
|
73
|
+
const releaseScriptDir = path.join(process.cwd(), 'scripts');
|
|
74
|
+
if (!fs.existsSync(releaseScriptDir)) {
|
|
75
|
+
fs.mkdirSync(releaseScriptDir, { recursive: true });
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
const releaseScriptPath = path.join(releaseScriptDir, 'release.js');
|
|
79
|
+
const releaseScriptSource = path.join(__dirname, 'scripts', 'release.js');
|
|
80
|
+
const releaseScriptContent = fs.readFileSync(releaseScriptSource, 'utf8');
|
|
81
|
+
|
|
82
|
+
fs.writeFileSync(releaseScriptPath, releaseScriptContent + '\n');
|
|
83
|
+
try {
|
|
84
|
+
fs.chmodSync(releaseScriptPath, 0o755);
|
|
85
|
+
} catch (error) {
|
|
86
|
+
// Ignore chmod errors on non-POSIX systems
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// Determine commitlint config format based on project module type
|
|
90
|
+
const isEsmProject = packageJson.type === 'module';
|
|
91
|
+
const commitlintConfigFile = isEsmProject ? 'commitlint.config.js' : 'commitlint.config.cjs';
|
|
92
|
+
const commitlintConfigContent = isEsmProject
|
|
93
|
+
? `export default {
|
|
94
|
+
extends: ['@commitlint/config-conventional'],
|
|
95
|
+
ignores: [(message) => message.startsWith('chore(release):')]
|
|
96
|
+
}\n`
|
|
97
|
+
: `module.exports = {
|
|
98
|
+
extends: ['@commitlint/config-conventional'],
|
|
99
|
+
ignores: [(message) => message.startsWith('chore(release):')]
|
|
100
|
+
}\n`;
|
|
101
|
+
|
|
102
|
+
const legacyCommitlintConfigFile = isEsmProject ? 'commitlint.config.cjs' : 'commitlint.config.js';
|
|
103
|
+
if (fs.existsSync(legacyCommitlintConfigFile)) {
|
|
104
|
+
fs.rmSync(legacyCommitlintConfigFile);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
console.log(`โ๏ธ Creating commitlint config (${commitlintConfigFile})...`);
|
|
108
|
+
fs.writeFileSync(commitlintConfigFile, commitlintConfigContent);
|
|
109
|
+
|
|
110
|
+
// Initialize Husky
|
|
111
|
+
console.log('๐ถ Setting up Husky...');
|
|
112
|
+
execSync('npx husky init', { stdio: 'inherit' });
|
|
113
|
+
|
|
114
|
+
// Create commit-msg hook
|
|
115
|
+
const huskyDir = path.join(process.cwd(), '.husky');
|
|
116
|
+
if (!fs.existsSync(huskyDir)) {
|
|
117
|
+
fs.mkdirSync(huskyDir, { recursive: true });
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
const commitMsgHook = `#!/usr/bin/env sh
|
|
121
|
+
|
|
122
|
+
npx --no -- commitlint --edit "$1"
|
|
123
|
+
`;
|
|
124
|
+
fs.writeFileSync(path.join(huskyDir, 'commit-msg'), commitMsgHook);
|
|
125
|
+
fs.chmodSync(path.join(huskyDir, 'commit-msg'), 0o755);
|
|
126
|
+
|
|
127
|
+
console.log('\nโ
Commiter setup complete!\n');
|
|
128
|
+
console.log('๐ Available commands:');
|
|
129
|
+
console.log(' npm run release major - Create a major release (1.0.0 โ 2.0.0)');
|
|
130
|
+
console.log(' npm run release minor - Create a minor release (1.0.0 โ 1.1.0)');
|
|
131
|
+
console.log(' npm run release patch - Create a patch release (1.0.0 โ 1.0.1)');
|
|
132
|
+
console.log(' npm run release - Auto-detect version bump');
|
|
133
|
+
console.log(' npm run release -- --prerelease beta - Create a beta prerelease\n');
|
|
134
|
+
console.log('๐ฏ Commit format: type(scope): subject');
|
|
135
|
+
console.log(' Example: feat(auth): add user login\n');
|
|
136
|
+
|
|
137
|
+
} catch (error) {
|
|
138
|
+
console.error('โ Error during setup:', error.message);
|
|
139
|
+
process.exit(1);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// Run setup if called directly
|
|
144
|
+
if (require.main === module) {
|
|
145
|
+
setupCommiter();
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
module.exports = { setupCommiter, ensureSafeTestScript };
|
package/package.json
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@programinglive/commiter",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Commit convention tooling for standard-version releases with beautiful changelogs",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"commiter": "./index.js"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"test": "node test/ensureSafeTestScript.test.js",
|
|
11
|
-
"prepare": "husky",
|
|
12
|
-
"release": "node scripts/release.js",
|
|
13
|
-
"release:major": "node scripts/release.js major",
|
|
14
|
-
"release:minor": "node scripts/release.js minor",
|
|
15
|
-
"release:patch": "node scripts/release.js patch"
|
|
16
|
-
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"commit",
|
|
19
|
-
"conventional-commits",
|
|
20
|
-
"standard-version",
|
|
21
|
-
"changelog",
|
|
22
|
-
"versioning",
|
|
23
|
-
"semantic-release",
|
|
24
|
-
"git-hooks",
|
|
25
|
-
"husky",
|
|
26
|
-
"commitlint"
|
|
27
|
-
],
|
|
28
|
-
"author": "Programming Live",
|
|
29
|
-
"license": "MIT",
|
|
30
|
-
"repository": {
|
|
31
|
-
"type": "git",
|
|
32
|
-
"url": "git+https://github.com/programinglive/commiter.git"
|
|
33
|
-
},
|
|
34
|
-
"bugs": {
|
|
35
|
-
"url": "https://github.com/programinglive/commiter/issues"
|
|
36
|
-
},
|
|
37
|
-
"homepage": "https://github.com/programinglive/commiter#readme",
|
|
38
|
-
"type": "commonjs",
|
|
39
|
-
"standard-version": {
|
|
40
|
-
"releaseCommitMessageFormat": "chore(release): {{currentTag}} ๐",
|
|
41
|
-
"types": [
|
|
42
|
-
{
|
|
43
|
-
"type": "feat",
|
|
44
|
-
"section": "โจ Features"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"type": "fix",
|
|
48
|
-
"section": "๐ Bug Fixes"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"type": "perf",
|
|
52
|
-
"section": "โก Performance"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"type": "refactor",
|
|
56
|
-
"section": "โป๏ธ Refactors"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"type": "docs",
|
|
60
|
-
"section": "๐ Documentation"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"type": "style",
|
|
64
|
-
"section": "๐ Styles"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"type": "test",
|
|
68
|
-
"section": "โ
Tests"
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"type": "build",
|
|
72
|
-
"section": "๐๏ธ Build System"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"type": "ci",
|
|
76
|
-
"section": "๐ท Continuous Integration"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"type": "chore",
|
|
80
|
-
"section": "๐งน Chores"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"type": "revert",
|
|
84
|
-
"section": "โช Reverts"
|
|
85
|
-
}
|
|
86
|
-
]
|
|
87
|
-
},
|
|
88
|
-
"devDependencies": {
|
|
89
|
-
"@commitlint/cli": "^20.1.0",
|
|
90
|
-
"@commitlint/config-conventional": "^20.0.0",
|
|
91
|
-
"husky": "^9.1.7",
|
|
92
|
-
"standard-version": "^9.5.0"
|
|
93
|
-
}
|
|
94
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@programinglive/commiter",
|
|
3
|
+
"version": "1.0.10",
|
|
4
|
+
"description": "Commit convention tooling for standard-version releases with beautiful changelogs",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"commiter": "./index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "node test/ensureSafeTestScript.test.js",
|
|
11
|
+
"prepare": "husky",
|
|
12
|
+
"release": "node scripts/release.js",
|
|
13
|
+
"release:major": "node scripts/release.js major",
|
|
14
|
+
"release:minor": "node scripts/release.js minor",
|
|
15
|
+
"release:patch": "node scripts/release.js patch"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"commit",
|
|
19
|
+
"conventional-commits",
|
|
20
|
+
"standard-version",
|
|
21
|
+
"changelog",
|
|
22
|
+
"versioning",
|
|
23
|
+
"semantic-release",
|
|
24
|
+
"git-hooks",
|
|
25
|
+
"husky",
|
|
26
|
+
"commitlint"
|
|
27
|
+
],
|
|
28
|
+
"author": "Programming Live",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/programinglive/commiter.git"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/programinglive/commiter/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/programinglive/commiter#readme",
|
|
38
|
+
"type": "commonjs",
|
|
39
|
+
"standard-version": {
|
|
40
|
+
"releaseCommitMessageFormat": "chore(release): {{currentTag}} ๐",
|
|
41
|
+
"types": [
|
|
42
|
+
{
|
|
43
|
+
"type": "feat",
|
|
44
|
+
"section": "โจ Features"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "fix",
|
|
48
|
+
"section": "๐ Bug Fixes"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"type": "perf",
|
|
52
|
+
"section": "โก Performance"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "refactor",
|
|
56
|
+
"section": "โป๏ธ Refactors"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"type": "docs",
|
|
60
|
+
"section": "๐ Documentation"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "style",
|
|
64
|
+
"section": "๐ Styles"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"type": "test",
|
|
68
|
+
"section": "โ
Tests"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "build",
|
|
72
|
+
"section": "๐๏ธ Build System"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"type": "ci",
|
|
76
|
+
"section": "๐ท Continuous Integration"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "chore",
|
|
80
|
+
"section": "๐งน Chores"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"type": "revert",
|
|
84
|
+
"section": "โช Reverts"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
"@commitlint/cli": "^20.1.0",
|
|
90
|
+
"@commitlint/config-conventional": "^20.0.0",
|
|
91
|
+
"husky": "^9.1.7",
|
|
92
|
+
"standard-version": "^9.5.0"
|
|
93
|
+
}
|
|
94
|
+
}
|