Skip to content

Commit 9f4ee73

Browse files
committed
Revert "REVERT THIS: put a line break between entities so I can see what changed."
This reverts commit a66d728.
1 parent 9f04266 commit 9f4ee73

File tree

2 files changed

+4
-5447
lines changed

2 files changed

+4
-5447
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,7 @@ module.exports = function(grunt) {
11921192
// Convert the entities list to PHP array syntax.
11931193
entities = '\'' + emojiArray.filter( function( val ) {
11941194
return val.length >= 8 ? val : false ;
1195-
} ).join( '\',\n\'' ) + '\'';
1195+
} ).join( '\', \'' ) + '\'';
11961196

11971197
// Create a list of all characters used by the emoji list.
11981198
partials = partials.replace( /-/g, '\n' );
@@ -1203,7 +1203,7 @@ module.exports = function(grunt) {
12031203
// Convert the partials list to PHP array syntax.
12041204
partials = '\'' + Array.from( partialsSet ).filter( function( val ) {
12051205
return val.length >= 8 ? val : false ;
1206-
} ).join( '\',\n\'' ) + '\'';
1206+
} ).join( '\', \'' ) + '\'';
12071207

12081208
regex = '// START: emoji arrays\n';
12091209
regex += '\t$entities = array( ' + entities + ' );\n';

0 commit comments

Comments
 (0)