Skip to content

Commit cee8523

Browse files
update package.json
1 parent c3dc80b commit cee8523

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

emojme-download.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ async function download(subdomains, tokens, options) {
3636
let downloadPromises = authPairs.map(async authPair => {
3737
let adminList = new EmojiAdminList(...authPair, options.output);
3838
let emojiList = await adminList.get(options.bustCache);
39-
if (options.save.length > 0)
39+
if (options.save && options.save.length > 0)
4040
return await EmojiAdminList.save(emojiList, authPair[0], options.save);
4141

4242
return emojiList;

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
{
2-
"name": "emoji-tools",
2+
"name": "emojme",
33
"version": "1.2.0",
4+
"author": "Jack Ellenberger <jack@ellenberger.zone>",
5+
"main": "emojme.js",
6+
"files": [
7+
"emojime*",
8+
"lib",
9+
"README.md"
10+
],
411
"engines": {
512
"node": ">=10.0.0"
613
},
714
"description": "The Emojartist's toolbox for spreading their work across the slackosphere",
8-
"main": "emoji.js",
915
"scripts": {
1016
"test": "mocha spec/unit/**/* && mocha spec/integration/**/*",
1117
"test:unit": "mocha spec/unit/**/*",
1218
"test:integration": "mocha spec/integration/**/*"
1319
},
14-
"author": "",
1520
"license": "ISC",
1621
"dependencies": {
1722
"commander": "^2.17.1",

0 commit comments

Comments
 (0)