From 3e0b9e10a018c3b4ed89b44ae53b0dcd7af9a744 Mon Sep 17 00:00:00 2001 From: Alan Feng Date: Sat, 18 Mar 2023 21:08:30 +0800 Subject: [PATCH 1/2] Add waline-emojis w/ npm auto-update --- packages/w/waline-emojis.json | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 packages/w/waline-emojis.json diff --git a/packages/w/waline-emojis.json b/packages/w/waline-emojis.json new file mode 100644 index 000000000..415637c23 --- /dev/null +++ b/packages/w/waline-emojis.json @@ -0,0 +1,44 @@ +{ + "name": "@waline/emojis", + "version": "1.2.0", + "description": "Emojis for Waline", + "keywords": [ + "waline", + "comment", + "blog" + ], + "scripts": { + "build": "node build.js", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "bugs": { + "url": "https://github.com/walinejs/waline/issues" + }, + "homepage": "https://waline.js.org", + "repository": { + "type": "git", + "url": "git+https://github.com/walinejs/emojis.git" + }, + "license": "GPL-3.0-or-later", + "author": { + "name": "Mr.Hope", + "email": "mister-hope@outlook.com", + "url": "https://mrhope.site" + }, + "autoupdate": { + "source": "npm", + "target": "@waline/emojis", + "fileMap": [ + { + "basePath": "./" + "files": [ + "**/*.json", + "**/*.png" + ] + } + ] + }, + "publishConfig": { + "access": "public" + } +} From a56ea967dabddcf95241268d81cf06408bd1148c Mon Sep 17 00:00:00 2001 From: Matt Cowley Date: Sun, 26 Mar 2023 21:38:12 +0100 Subject: [PATCH 2/2] Fix config format --- packages/w/waline-emojis.json | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/packages/w/waline-emojis.json b/packages/w/waline-emojis.json index 415637c23..0e7af6b95 100644 --- a/packages/w/waline-emojis.json +++ b/packages/w/waline-emojis.json @@ -1,44 +1,35 @@ { - "name": "@waline/emojis", - "version": "1.2.0", + "name": "waline-emojis", "description": "Emojis for Waline", "keywords": [ "waline", "comment", "blog" ], - "scripts": { - "build": "node build.js", - "test": "echo \"Error: no test specified\" && exit 1" - }, - "bugs": { - "url": "https://github.com/walinejs/waline/issues" - }, "homepage": "https://waline.js.org", "repository": { "type": "git", "url": "git+https://github.com/walinejs/emojis.git" }, "license": "GPL-3.0-or-later", - "author": { - "name": "Mr.Hope", - "email": "mister-hope@outlook.com", - "url": "https://mrhope.site" - }, + "authors": [ + { + "name": "Mr.Hope", + "email": "mister-hope@outlook.com", + "url": "https://mrhope.site" + } + ], "autoupdate": { "source": "npm", "target": "@waline/emojis", "fileMap": [ { - "basePath": "./" + "basePath": "./", "files": [ "**/*.json", "**/*.png" ] } - ] - }, - "publishConfig": { - "access": "public" + ] } }