From 2ab25a43416d630e07d46fc636c729d84d282561 Mon Sep 17 00:00:00 2001 From: MDLeom <43627182+curbengh@users.noreply.github.com> Date: Mon, 7 Sep 2020 08:38:06 +0000 Subject: [PATCH 1/4] chore: update description --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e144596..7d02e13 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hexo-uglify", "version": "1.1.0", - "description": "Minify JavaScript files with UglifyJS.", + "description": "Minify JavaScript files with Terser.", "main": "index.js", "scripts": { "test": "mocha test/index.js", @@ -22,7 +22,7 @@ "keywords": [ "hexo", "filter", - "uglify" + "terser" ], "author": "Tommy Chen (http://zespia.tw)", "maintainers": [ From c659790fbf059571202f0242867eab2a475c6d78 Mon Sep 17 00:00:00 2001 From: MDLeom <43627182+curbengh@users.noreply.github.com> Date: Mon, 7 Sep 2020 08:38:13 +0000 Subject: [PATCH 2/4] chore: requires Node 10.13+ --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7d02e13..95017d6 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "index.js" ], "engines": { - "node": ">= 8.6.0" + "node": ">= 10.13.0" }, "repository": "hexojs/hexo-uglify", "keywords": [ From 4c7b3ed8d96652c2cecde0a58e5a0acb53b592db Mon Sep 17 00:00:00 2001 From: MDLeom <43627182+curbengh@users.noreply.github.com> Date: Mon, 7 Sep 2020 08:39:07 +0000 Subject: [PATCH 3/4] ci(travis): specify Node 14 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4642ede..2494657 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: node_js node_js: - "10" - "12" - - "node" + - "14" script: - npm run eslint From e29678c1cd2124edc2e5f93295a5d089f377519d Mon Sep 17 00:00:00 2001 From: MDLeom <43627182+curbengh@users.noreply.github.com> Date: Mon, 7 Sep 2020 08:39:17 +0000 Subject: [PATCH 4/4] release: 2.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 95017d6..4adb237 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hexo-uglify", - "version": "1.1.0", + "version": "2.0.0", "description": "Minify JavaScript files with Terser.", "main": "index.js", "scripts": {