fix: fix build script

This commit is contained in:
Nolan Lawson 2020-06-06 20:46:03 -07:00
parent c4c0e72a72
commit 142083f88a
2 changed files with 11 additions and 1 deletions

View File

@ -286,6 +286,8 @@ ___
Returns all emoji belonging to a group, ordered by `order`.
Non-numbers throw an error.
**Parameters:**
Name | Type | Description |
@ -302,6 +304,8 @@ ___
Returns all emoji matching the given search query, ordered by `order`.
Empty/null strings throw an error.
**Parameters:**
Name | Type | Description |
@ -318,6 +322,10 @@ ___
Return a single emoji matching the shortcode, or null if not found.
The colons around the shortcode should not be included when querying, e.g.
use "slight_smile", not ":slight_smile:". Uppercase versus lowercase
does not matter. Empty/null strings throw an error.
**Parameters:**
Name | Type | Description |
@ -334,6 +342,8 @@ ___
Return a single emoji matching the unicode string, or null if not found.
Empty/null strings throw an error.
**Parameters:**
Name | Type | Description |

View File

@ -44,7 +44,7 @@ const entryPoints = [
output: './picker.js'
},
{
input: './src/database/Database.test.js',
input: './src/database/Database.js',
output: './database.js'
}
]