Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Merge pull request #4 from niclashoyer/1.5.0-1
Browse files Browse the repository at this point in the history
Reversed order, added version information
  • Loading branch information
niclashoyer committed Sep 11, 2015
2 parents 1bd4f69 + 2336ad4 commit c9bc332
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ grunt.registerTask('pidgin', 'Generate Emoji One theme file', function() {
var opts = this.options({
dest: './dist/theme',
});
var version = grunt.file.readJSON('package.json').version;
var emoji = require('emojione/emoji');
var theme = {
name: 'Emoji One',
name: 'Emoji One (' + version + ')',
desc: 'Emoji One unicode ported to Pidgin',
icon: '1F40C.png',
author: 'Niclas Hoyer',
Expand All @@ -37,6 +38,7 @@ grunt.registerTask('pidgin', 'Generate Emoji One theme file', function() {
}));
theme.repl.push(alias);
});
theme.repl.reverse();
theme.repl = theme.repl.map(function(x) {
return x.join('\t');
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pidgin-emojione",
"version": "1.5.0",
"version": "1.5.0-1",
"dependencies": {},
"devDependencies": {
"emojione": "^1.5.0",
Expand Down

0 comments on commit c9bc332

Please sign in to comment.