We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42bc29e commit 2786523Copy full SHA for 2786523
gruntfile.js
@@ -2,7 +2,8 @@ module.exports = function ( grunt ) {
2
// Load all Grunt plugins.
3
require( 'load-grunt-tasks' )( grunt );
4
5
- const pluginVersion = grunt.file.read( '.version' );
+ // Trim whitespace and newlines from pluginVersion.
6
+ const pluginVersion = grunt.file.read( '.version' ).trim();
7
8
const options = {
9
plugin_slug:
0 commit comments