mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-17 06:56:30 +00:00
1.1.17
This commit is contained in:
parent
dabda0324f
commit
bdda80ac74
@ -7,7 +7,13 @@ 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.16](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.15...v1.1.16)
|
||||
## [v1.1.17](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.16...v1.1.17)
|
||||
|
||||
### Commits
|
||||
|
||||
- Prune example URLs [`dabda03`](https://github.com/bcomnes/deploy-to-neocities/commit/dabda0324f7965b65951d021c1e99bc10d640903)
|
||||
|
||||
## [v1.1.16](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.15...v1.1.16) - 2023-06-26
|
||||
|
||||
### Merged
|
||||
|
||||
|
||||
10
dist/index.js
vendored
10
dist/index.js
vendored
@ -6357,6 +6357,11 @@ var require_fixed_size = __commonJS({
|
||||
this.btm = 0;
|
||||
this.next = null;
|
||||
}
|
||||
clear() {
|
||||
this.top = this.btm = 0;
|
||||
this.next = null;
|
||||
this.buffer.fill(void 0);
|
||||
}
|
||||
push(data) {
|
||||
if (this.buffer[this.top] !== void 0)
|
||||
return false;
|
||||
@ -6393,6 +6398,11 @@ var require_fast_fifo = __commonJS({
|
||||
this.tail = this.head;
|
||||
this.length = 0;
|
||||
}
|
||||
clear() {
|
||||
this.head = this.tail;
|
||||
this.head.clear();
|
||||
this.length = 0;
|
||||
}
|
||||
push(val) {
|
||||
this.length++;
|
||||
if (!this.head.push(val)) {
|
||||
|
||||
4
dist/index.js.map
vendored
4
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "deploy-to-neocities",
|
||||
"description": "Github Action to deplpoy a folder to Neocities.org",
|
||||
"version": "1.1.16",
|
||||
"version": "1.1.17",
|
||||
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
|
||||
"bugs": {
|
||||
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user