vojtajina / grunt-bump

Grunt.js plugin - Increment package version.
MIT License
651 stars 122 forks source link

Hanging indefinitely - No errors #173

Closed dolanmiu closed 8 years ago

dolanmiu commented 8 years ago

When I run my grunt bump task, it just hangs indefinitely with no end.

image

Here is my grunt task:

    grunt.registerTask('bump', [
        'bump'
    ]);
bump: {
            options: {
                files: ['package.json'],
                updateConfigs: [],
                commit: true,
                commitMessage: 'Release v%VERSION%',
                commitFiles: ['package.json'],
                createTag: true,
                tagName: 'v%VERSION%',
                tagMessage: 'Version %VERSION%',
                push: true,
                pushTo: 'upstream',
                gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d',
                globalReplace: false,
                prereleaseName: false,
                metadata: '',
                regExp: false
            }
        }

I'm using grunt-bump 0.7.0

eddiemonge commented 8 years ago

Honestly, no idea if this works on windows. There are no other logs or anything? Try running it with --verbose

eddiemonge commented 8 years ago

closing due to inactivity