From f13458cc2d998657d72138fc1bccee526ab1e9b3 Mon Sep 17 00:00:00 2001 From: Bret Comnes Date: Thu, 13 Feb 2020 11:54:18 -0700 Subject: [PATCH] 0.0.9 --- CHANGELOG.md | 6 ++++++ node_modules/async-neocities/CHANGELOG.md | 6 ++++++ .../async-neocities/lib/stats-handler.js | 2 +- node_modules/async-neocities/package.json | 20 +++++++++---------- package.json | 2 +- 5 files changed, 24 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9f5fe4..7e4333e 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.9](https://github.com/bcomnes/deploy-to-neocities/compare/v0.0.8...v0.0.9) - 2020-02-13 + +### Commits + +- chore: update deps [`5e6f984`](https://github.com/bcomnes/deploy-to-neocities/commit/5e6f9848c78a5f3a668b47a27dc14835005bf98c) + ## [v0.0.8](https://github.com/bcomnes/deploy-to-neocities/compare/v0.0.7...v0.0.8) - 2020-02-13 ### Commits diff --git a/node_modules/async-neocities/CHANGELOG.md b/node_modules/async-neocities/CHANGELOG.md index 476780a..8aa3847 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.4](https://github.com/bcomnes/async-neocities/compare/v1.1.3...v1.1.4) - 2020-02-13 + +### Commits + +- bug: fix logging handler logic [`f6c5921`](https://github.com/bcomnes/async-neocities/commit/f6c5921d6fd0a420c5895ed6ba2fe2f766e726fd) + ## [v1.1.3](https://github.com/bcomnes/async-neocities/compare/v1.1.2...v1.1.3) - 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 41d3d65..aab6523 100644 --- a/node_modules/async-neocities/lib/stats-handler.js +++ b/node_modules/async-neocities/lib/stats-handler.js @@ -35,7 +35,7 @@ function statsHandler (opts = {}) { function progressHandler (stats) { Object.assign(lastStats, stats) - if (!stats.complete || stats.progress < 1) { + if (!stats.complete && stats.progress < 1) { if (!progressInterval) { progressInterval = setInterval(logProgress, 500, lastStats) logProgress(lastStats) diff --git a/node_modules/async-neocities/package.json b/node_modules/async-neocities/package.json index cdf4b98..308fa70 100644 --- a/node_modules/async-neocities/package.json +++ b/node_modules/async-neocities/package.json @@ -1,26 +1,26 @@ { - "_from": "async-neocities@1.1.3", - "_id": "async-neocities@1.1.3", + "_from": "async-neocities@1.1.4", + "_id": "async-neocities@1.1.4", "_inBundle": false, - "_integrity": "sha512-lUPontZXSugOx3/3TsJQGLmgUwUsH6pKy/yPTnxJF6tMaItXbdR3YwTJne5A//FWFd0sFMfCOkTYuTAz7w55OQ==", + "_integrity": "sha512-EpVYipQlIkBGSbZYfnrJYpAhgoYbC2MyWypcMZ+YnPUM1c38WsKGA5QGujX6Rg6gQQKwUUTt/tuYSg8gPQGsSA==", "_location": "/async-neocities", "_phantomChildren": {}, "_requested": { "type": "version", "registry": true, - "raw": "async-neocities@1.1.3", + "raw": "async-neocities@1.1.4", "name": "async-neocities", "escapedName": "async-neocities", - "rawSpec": "1.1.3", + "rawSpec": "1.1.4", "saveSpec": null, - "fetchSpec": "1.1.3" + "fetchSpec": "1.1.4" }, "_requiredBy": [ "/" ], - "_resolved": "https://registry.npmjs.org/async-neocities/-/async-neocities-1.1.3.tgz", - "_shasum": "15604ec2f98746f8185d7916a5b7469b96480148", - "_spec": "async-neocities@1.1.3", + "_resolved": "https://registry.npmjs.org/async-neocities/-/async-neocities-1.1.4.tgz", + "_shasum": "7edb6d8a9ceee4fdc410b562430119619dd31aca", + "_spec": "async-neocities@1.1.4", "_where": "/Users/bret/repos/deploy-to-neocities", "author": { "name": "Bret Comnes", @@ -80,5 +80,5 @@ "dist" ] }, - "version": "1.1.3" + "version": "1.1.4" } diff --git a/package.json b/package.json index 9a7857c..83871b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "deploy-to-neocities", - "version": "0.0.8", + "version": "0.0.9", "description": "Github Action to deplpoy a folder to Neocities.org", "main": "index.js", "private": true,