Skip to content
This repository was archived by the owner on Sep 20, 2019. It is now read-only.

Commit ede6a68

Browse files
committed
chore(release-process): fix release bump tasks
1 parent a7b398d commit ede6a68

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

grunt/aliases.coffee

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ module.exports =
3838

3939
changelog: ['conventionalChangelog']
4040

41-
'bump@':[ 'bumponly', 'default', 'changelog', 'bumpcommit' ]
41+
'bump@':[ 'bump-only', 'default', 'changelog', 'bump-commit' ]
4242

43-
'bump@minor':[ 'bumponly:minor', 'default', 'changelog', 'bumpcommit' ]
43+
'bump@minor':[ 'bump-only:minor', 'default', 'changelog', 'bump-commit' ]
4444

45-
'bump@major':[ 'bumponly:major', 'default', 'changelog', 'bumpcommit' ]
45+
'bump@major':[ 'bump-only:major', 'default', 'changelog', 'bump-commit' ]
4646
#To Update examples for Viewer
4747
examples:[ 'shell:examples', 'concat:examples' ]
4848

grunt/bump.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ module.exports = function (grunt, options) {
1616
'dist/<%= pkg.name %>.min.no-header.js',
1717
'dist/<%= pkg.name %>.js',
1818
'dist/<%= pkg.name %>_dev_mapped.js',
19-
'dist/<%= pkg.name %>_dev_mapped.js.map',
20-
'dist/architecture/**/*'
19+
'dist/<%= pkg.name %>_dev_mapped.js.map'
2120
],
2221
createTag: true,
2322
tagName: 'v%VERSION%',

grunt/conventionalChangelog.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ var argv = require('yargs').argv;
1414
*/
1515

1616
module.exports = function (grunt, options) {
17-
console.log('version:', argv.ui_leaflet_ver || _pkg.version);
1817
return {
1918
options: {
2019
changelogOpts: {

0 commit comments

Comments
 (0)