From 0dd3a06ef7416a2bfb7da7c7c9a42a52c34aa5be Mon Sep 17 00:00:00 2001 From: Bret Comnes Date: Thu, 13 Feb 2020 11:59:16 -0700 Subject: [PATCH] 0.0.10 --- CHANGELOG.md | 6 ++++++ node_modules/async-neocities/CHANGELOG.md | 6 ++++++ .../async-neocities/lib/stats-handler.js | 5 ++++- node_modules/async-neocities/package.json | 20 +++++++++---------- package.json | 2 +- 5 files changed, 27 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e4333e..4fc9806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +## [v0.0.10](https://github.com/bcomnes/deploy-to-neocities/compare/v0.0.9...v0.0.10) - 2020-02-13 + +### Commits + +- chore: deps [`bf2d333`](https://github.com/bcomnes/deploy-to-neocities/commit/bf2d333152be116ec87d35592c8cb9ee4ef6821b) + ## [v0.0.9](https://github.com/bcomnes/deploy-to-neocities/compare/v0.0.8...v0.0.9) - 2020-02-13 ### Commits diff --git a/node_modules/async-neocities/CHANGELOG.md b/node_modules/async-neocities/CHANGELOG.md index 8aa3847..b2b72f4 100644 --- a/node_modules/async-neocities/CHANGELOG.md +++ b/node_modules/async-neocities/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +## [v1.1.5](https://github.com/bcomnes/async-neocities/compare/v1.1.4...v1.1.5) - 2020-02-13 + +### Commits + +- bug: Log last stats before clear [`c4c83f8`](https://github.com/bcomnes/async-neocities/commit/c4c83f8e329303404dfec6a2943d8b01783040ad) + ## [v1.1.4](https://github.com/bcomnes/async-neocities/compare/v1.1.3...v1.1.4) - 2020-02-13 ### Commits diff --git a/node_modules/async-neocities/lib/stats-handler.js b/node_modules/async-neocities/lib/stats-handler.js index aab6523..9f6fd21 100644 --- a/node_modules/async-neocities/lib/stats-handler.js +++ b/node_modules/async-neocities/lib/stats-handler.js @@ -41,7 +41,10 @@ function statsHandler (opts = {}) { logProgress(lastStats) } } else { - if (progressInterval) clearInterval(progressInterval) + if (progressInterval) { + clearInterval(progressInterval) + logProgress(lastStats) + } } } diff --git a/node_modules/async-neocities/package.json b/node_modules/async-neocities/package.json index 308fa70..83d6fbf 100644 --- a/node_modules/async-neocities/package.json +++ b/node_modules/async-neocities/package.json @@ -1,26 +1,26 @@ { - "_from": "async-neocities@1.1.4", - "_id": "async-neocities@1.1.4", + "_from": "async-neocities@1.1.5", + "_id": "async-neocities@1.1.5", "_inBundle": false, - "_integrity": "sha512-EpVYipQlIkBGSbZYfnrJYpAhgoYbC2MyWypcMZ+YnPUM1c38WsKGA5QGujX6Rg6gQQKwUUTt/tuYSg8gPQGsSA==", + "_integrity": "sha512-7EHFjdmPACBQ2prEr7wUQsIi9bVXrD5tpR9PTmDndmZn5U+0uPe6dQxuk+xKI6BLizQVQVKjjODPTI+De5rlTA==", "_location": "/async-neocities", "_phantomChildren": {}, "_requested": { "type": "version", "registry": true, - "raw": "async-neocities@1.1.4", + "raw": "async-neocities@1.1.5", "name": "async-neocities", "escapedName": "async-neocities", - "rawSpec": "1.1.4", + "rawSpec": "1.1.5", "saveSpec": null, - "fetchSpec": "1.1.4" + "fetchSpec": "1.1.5" }, "_requiredBy": [ "/" ], - "_resolved": "https://registry.npmjs.org/async-neocities/-/async-neocities-1.1.4.tgz", - "_shasum": "7edb6d8a9ceee4fdc410b562430119619dd31aca", - "_spec": "async-neocities@1.1.4", + "_resolved": "https://registry.npmjs.org/async-neocities/-/async-neocities-1.1.5.tgz", + "_shasum": "b9d31cf903ff6253beaf9012201bfae97908436f", + "_spec": "async-neocities@1.1.5", "_where": "/Users/bret/repos/deploy-to-neocities", "author": { "name": "Bret Comnes", @@ -80,5 +80,5 @@ "dist" ] }, - "version": "1.1.4" + "version": "1.1.5" } diff --git a/package.json b/package.json index f43da16..6db184d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "deploy-to-neocities", - "version": "0.0.9", + "version": "0.0.10", "description": "Github Action to deplpoy a folder to Neocities.org", "main": "index.js", "private": true,