This commit is contained in:
Bret Comnes 2020-02-17 21:19:33 -07:00
parent 3024afb807
commit 2ac7b56408
No known key found for this signature in database
GPG Key ID: 3705F4634DC3A1AC
8 changed files with 201 additions and 164 deletions

View File

@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
## [v1.0.0](https://github.com/bcomnes/deploy-to-neocities/compare/v0.0.11...v1.0.0) - 2020-02-18
### Merged
- Update dependencies to enable Greenkeeper 🌴 [`#1`](https://github.com/bcomnes/deploy-to-neocities/pull/1)
### Commits
- docs: Document action, inputs and outputs. [`da5f527`](https://github.com/bcomnes/deploy-to-neocities/commit/da5f52725420f64188f5130c7bb54fda5252e3ec)
- docs: add missing example [`3024afb`](https://github.com/bcomnes/deploy-to-neocities/commit/3024afb80791888e8c0fd04cf23ba6e7560a5f40)
- Update README.md [`df9c0b9`](https://github.com/bcomnes/deploy-to-neocities/commit/df9c0b9fe144eb76092e3998b2013e130756c950)
## [v0.0.11](https://github.com/bcomnes/deploy-to-neocities/compare/v0.0.10...v0.0.11) - 2020-02-13 ## [v0.0.11](https://github.com/bcomnes/deploy-to-neocities/compare/v0.0.10...v0.0.11) - 2020-02-13
### Commits ### Commits

View File

@ -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). Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
## [v1.1.6](https://github.com/bcomnes/async-neocities/compare/v1.1.5...v1.1.6) - 2020-02-13
### Commits
- refactor: limit decimal places in statHandler [`745b5c0`](https://github.com/bcomnes/async-neocities/commit/745b5c08b446723b837cf787e5911045cd0a01ed)
## [v1.1.5](https://github.com/bcomnes/async-neocities/compare/v1.1.4...v1.1.5) - 2020-02-13 ## [v1.1.5](https://github.com/bcomnes/async-neocities/compare/v1.1.4...v1.1.5) - 2020-02-13
### Commits ### Commits

View File

@ -49,7 +49,7 @@ function statsHandler (opts = {}) {
} }
function logProgress (stats) { function logProgress (stats) {
let logLine = `Stage ${stats.stage}: ${stats.progress * 100}%` let logLine = `Stage ${stats.stage}: ${(stats.progress * 100).toFixed(2)}%`
if (stats.bytesWritten != null && stats.totalBytes != null) { if (stats.bytesWritten != null && stats.totalBytes != null) {
logLine = logLine + ` (${prettyBytes(stats.bytesWritten)} / ${prettyBytes(stats.totalBytes)})` logLine = logLine + ` (${prettyBytes(stats.bytesWritten)} / ${prettyBytes(stats.totalBytes)})`
} }

View File

@ -1,26 +1,26 @@
{ {
"_from": "async-neocities@1.1.5", "_from": "async-neocities@1.1.6",
"_id": "async-neocities@1.1.5", "_id": "async-neocities@1.1.6",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-7EHFjdmPACBQ2prEr7wUQsIi9bVXrD5tpR9PTmDndmZn5U+0uPe6dQxuk+xKI6BLizQVQVKjjODPTI+De5rlTA==", "_integrity": "sha512-q5fTVttBaN9znGxqxxDAh/ks+bZngIJPu6zPS7nlbJLC9NnOhrcP5Mu0VntxgEBtAuaExyI6uH/C+CxKSW0LeQ==",
"_location": "/async-neocities", "_location": "/async-neocities",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "version", "type": "version",
"registry": true, "registry": true,
"raw": "async-neocities@1.1.5", "raw": "async-neocities@1.1.6",
"name": "async-neocities", "name": "async-neocities",
"escapedName": "async-neocities", "escapedName": "async-neocities",
"rawSpec": "1.1.5", "rawSpec": "1.1.6",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "1.1.5" "fetchSpec": "1.1.6"
}, },
"_requiredBy": [ "_requiredBy": [
"/" "/"
], ],
"_resolved": "https://registry.npmjs.org/async-neocities/-/async-neocities-1.1.5.tgz", "_resolved": "https://registry.npmjs.org/async-neocities/-/async-neocities-1.1.6.tgz",
"_shasum": "b9d31cf903ff6253beaf9012201bfae97908436f", "_shasum": "405b45565ccbe9c4ea56e65552ae9c48c20a0309",
"_spec": "async-neocities@1.1.5", "_spec": "async-neocities@1.1.6",
"_where": "/Users/bret/repos/deploy-to-neocities", "_where": "/Users/bret/repos/deploy-to-neocities",
"author": { "author": {
"name": "Bret Comnes", "name": "Bret Comnes",
@ -80,5 +80,5 @@
"dist" "dist"
] ]
}, },
"version": "1.1.5" "version": "1.1.6"
} }

View File

@ -15,7 +15,7 @@ npm install --save readable-stream
This package is a mirror of the streams implementations in Node.js. This package is a mirror of the streams implementations in Node.js.
Full documentation may be found on the [Node.js website](https://nodejs.org/dist/v10.18.1/docs/api/stream.html). Full documentation may be found on the [Node.js website](https://nodejs.org/dist/v10.19.0/docs/api/stream.html).
If you want to guarantee a stable streams base, regardless of what version of If you want to guarantee a stable streams base, regardless of what version of
Node you, or the users of your libraries are using, use **readable-stream** *only* and avoid the *"stream"* module in Node-core, for background see [this blogpost](http://r.va.gg/2014/06/why-i-dont-use-nodes-core-stream-module.html). Node you, or the users of your libraries are using, use **readable-stream** *only* and avoid the *"stream"* module in Node-core, for background see [this blogpost](http://r.va.gg/2014/06/why-i-dont-use-nodes-core-stream-module.html).

View File

@ -6,6 +6,12 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
var _require = require('buffer'), var _require = require('buffer'),
Buffer = _require.Buffer; Buffer = _require.Buffer;
@ -22,170 +28,183 @@ module.exports =
/*#__PURE__*/ /*#__PURE__*/
function () { function () {
function BufferList() { function BufferList() {
_classCallCheck(this, BufferList);
this.head = null; this.head = null;
this.tail = null; this.tail = null;
this.length = 0; this.length = 0;
} }
var _proto = BufferList.prototype; _createClass(BufferList, [{
key: "push",
_proto.push = function push(v) { value: function push(v) {
var entry = { var entry = {
data: v, data: v,
next: null next: null
}; };
if (this.length > 0) this.tail.next = entry;else this.head = entry; if (this.length > 0) this.tail.next = entry;else this.head = entry;
this.tail = entry; this.tail = entry;
++this.length; ++this.length;
};
_proto.unshift = function unshift(v) {
var entry = {
data: v,
next: this.head
};
if (this.length === 0) this.tail = entry;
this.head = entry;
++this.length;
};
_proto.shift = function shift() {
if (this.length === 0) return;
var ret = this.head.data;
if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;
--this.length;
return ret;
};
_proto.clear = function clear() {
this.head = this.tail = null;
this.length = 0;
};
_proto.join = function join(s) {
if (this.length === 0) return '';
var p = this.head;
var ret = '' + p.data;
while (p = p.next) {
ret += s + p.data;
} }
}, {
return ret; key: "unshift",
}; value: function unshift(v) {
var entry = {
_proto.concat = function concat(n) { data: v,
if (this.length === 0) return Buffer.alloc(0); next: this.head
var ret = Buffer.allocUnsafe(n >>> 0); };
var p = this.head; if (this.length === 0) this.tail = entry;
var i = 0; this.head = entry;
++this.length;
while (p) {
copyBuffer(p.data, ret, i);
i += p.data.length;
p = p.next;
} }
}, {
return ret; key: "shift",
} // Consumes a specified amount of bytes or characters from the buffered data. value: function shift() {
; if (this.length === 0) return;
var ret = this.head.data;
_proto.consume = function consume(n, hasStrings) { if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;
var ret; --this.length;
return ret;
if (n < this.head.data.length) {
// `slice` is the same for buffers and strings.
ret = this.head.data.slice(0, n);
this.head.data = this.head.data.slice(n);
} else if (n === this.head.data.length) {
// First chunk is a perfect match.
ret = this.shift();
} else {
// Result spans more than one buffer.
ret = hasStrings ? this._getString(n) : this._getBuffer(n);
} }
}, {
key: "clear",
value: function clear() {
this.head = this.tail = null;
this.length = 0;
}
}, {
key: "join",
value: function join(s) {
if (this.length === 0) return '';
var p = this.head;
var ret = '' + p.data;
return ret; while (p = p.next) {
}; ret += s + p.data;
_proto.first = function first() {
return this.head.data;
} // Consumes a specified amount of characters from the buffered data.
;
_proto._getString = function _getString(n) {
var p = this.head;
var c = 1;
var ret = p.data;
n -= ret.length;
while (p = p.next) {
var str = p.data;
var nb = n > str.length ? str.length : n;
if (nb === str.length) ret += str;else ret += str.slice(0, n);
n -= nb;
if (n === 0) {
if (nb === str.length) {
++c;
if (p.next) this.head = p.next;else this.head = this.tail = null;
} else {
this.head = p;
p.data = str.slice(nb);
}
break;
} }
++c; return ret;
} }
}, {
key: "concat",
value: function concat(n) {
if (this.length === 0) return Buffer.alloc(0);
var ret = Buffer.allocUnsafe(n >>> 0);
var p = this.head;
var i = 0;
this.length -= c; while (p) {
return ret; copyBuffer(p.data, ret, i);
} // Consumes a specified amount of bytes from the buffered data. i += p.data.length;
; p = p.next;
_proto._getBuffer = function _getBuffer(n) {
var ret = Buffer.allocUnsafe(n);
var p = this.head;
var c = 1;
p.data.copy(ret);
n -= p.data.length;
while (p = p.next) {
var buf = p.data;
var nb = n > buf.length ? buf.length : n;
buf.copy(ret, ret.length - n, 0, nb);
n -= nb;
if (n === 0) {
if (nb === buf.length) {
++c;
if (p.next) this.head = p.next;else this.head = this.tail = null;
} else {
this.head = p;
p.data = buf.slice(nb);
}
break;
} }
++c; return ret;
} // Consumes a specified amount of bytes or characters from the buffered data.
}, {
key: "consume",
value: function consume(n, hasStrings) {
var ret;
if (n < this.head.data.length) {
// `slice` is the same for buffers and strings.
ret = this.head.data.slice(0, n);
this.head.data = this.head.data.slice(n);
} else if (n === this.head.data.length) {
// First chunk is a perfect match.
ret = this.shift();
} else {
// Result spans more than one buffer.
ret = hasStrings ? this._getString(n) : this._getBuffer(n);
}
return ret;
} }
}, {
key: "first",
value: function first() {
return this.head.data;
} // Consumes a specified amount of characters from the buffered data.
this.length -= c; }, {
return ret; key: "_getString",
} // Make sure the linked list only shows the minimal necessary information. value: function _getString(n) {
; var p = this.head;
var c = 1;
var ret = p.data;
n -= ret.length;
_proto[custom] = function (_, options) { while (p = p.next) {
return inspect(this, _objectSpread({}, options, { var str = p.data;
// Only inspect one level. var nb = n > str.length ? str.length : n;
depth: 0, if (nb === str.length) ret += str;else ret += str.slice(0, n);
// It should not recurse. n -= nb;
customInspect: false
})); if (n === 0) {
}; if (nb === str.length) {
++c;
if (p.next) this.head = p.next;else this.head = this.tail = null;
} else {
this.head = p;
p.data = str.slice(nb);
}
break;
}
++c;
}
this.length -= c;
return ret;
} // Consumes a specified amount of bytes from the buffered data.
}, {
key: "_getBuffer",
value: function _getBuffer(n) {
var ret = Buffer.allocUnsafe(n);
var p = this.head;
var c = 1;
p.data.copy(ret);
n -= p.data.length;
while (p = p.next) {
var buf = p.data;
var nb = n > buf.length ? buf.length : n;
buf.copy(ret, ret.length - n, 0, nb);
n -= nb;
if (n === 0) {
if (nb === buf.length) {
++c;
if (p.next) this.head = p.next;else this.head = this.tail = null;
} else {
this.head = p;
p.data = buf.slice(nb);
}
break;
}
++c;
}
this.length -= c;
return ret;
} // Make sure the linked list only shows the minimal necessary information.
}, {
key: custom,
value: function value(_, options) {
return inspect(this, _objectSpread({}, options, {
// Only inspect one level.
depth: 0,
// It should not recurse.
customInspect: false
}));
}
}]);
return BufferList; return BufferList;
}(); }();

View File

@ -1,8 +1,8 @@
{ {
"_from": "readable-stream@^3.1.1", "_from": "readable-stream@^3.1.1",
"_id": "readable-stream@3.5.0", "_id": "readable-stream@3.6.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-gSz026xs2LfxBPudDuI41V1lka8cxg64E66SGe78zJlsUofOg/yqwezdIcdfwik6B4h8LFmWPA9ef9X3FiNFLA==", "_integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
"_location": "/readable-stream", "_location": "/readable-stream",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
@ -18,8 +18,8 @@
"_requiredBy": [ "_requiredBy": [
"/duplexify" "/duplexify"
], ],
"_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.5.0.tgz", "_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
"_shasum": "465d70e6d1087f6162d079cd0b5db7fbebfd1606", "_shasum": "337bbda3adc0706bd3e024426a286d4b4b2c9198",
"_spec": "readable-stream@^3.1.1", "_spec": "readable-stream@^3.1.1",
"_where": "/Users/bret/repos/deploy-to-neocities/node_modules/duplexify", "_where": "/Users/bret/repos/deploy-to-neocities/node_modules/duplexify",
"browser": { "browser": {
@ -93,5 +93,5 @@
"test-browsers": "airtap --sauce-connect --loopback airtap.local -- test/browser.js", "test-browsers": "airtap --sauce-connect --loopback airtap.local -- test/browser.js",
"update-browser-errors": "babel -o errors-browser.js errors.js" "update-browser-errors": "babel -o errors-browser.js errors.js"
}, },
"version": "3.5.0" "version": "3.6.0"
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "deploy-to-neocities", "name": "deploy-to-neocities",
"version": "0.0.11", "version": "1.0.0",
"description": "Github Action to deplpoy a folder to Neocities.org", "description": "Github Action to deplpoy a folder to Neocities.org",
"main": "index.js", "main": "index.js",
"private": true, "private": true,