forked from tus/tus-node-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat-gcs-locker
* main: Add issue templates [ci] release (tus#625) Add .npmrc @tus/server: add `lastPath` arg to `getFileIdFromRequest` (tus#626) Add basic storage info to Upload model (tus#624) Release v0.0.0 @tus/server: allow onUploadFinish hook to override response data (tus#615)
- Loading branch information
Showing
34 changed files
with
425 additions
and
100 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: 🐛 Bug report | ||
labels: [bug] | ||
description: Describe a bug with a project | ||
body: | ||
- type: checkboxes | ||
id: initial-checklist | ||
attributes: | ||
label: Initial checklist | ||
options: | ||
- label: | ||
I understand this is a bug report and questions should be posted in the | ||
[Community Forum](https://community.transloadit.com/c/tus/6) | ||
required: true | ||
- label: | ||
I searched | ||
[issues](https://github.com/tus/tus-node-server/issues?q=is%3Aissue) and | ||
couldn’t find anything (or linked relevant results below) | ||
required: true | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: | ||
How did this happen? Please provide a [minimal, reproducible | ||
example](https://stackoverflow.com/help/minimal-reproducible-example). | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: What should happen? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: Actual behavior | ||
description: What happens instead? | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: 🚀 Feature request | ||
labels: [feature] | ||
description: Suggest an idea | ||
body: | ||
- type: checkboxes | ||
id: initial-checklist | ||
attributes: | ||
label: Initial checklist | ||
options: | ||
- label: | ||
I understand this is a feature request and questions should be posted in the | ||
[Community Forum](https://community.transloadit.com/c/tus/6) | ||
required: true | ||
- label: | ||
I searched | ||
[issues](https://github.com/tus/tus-node-server/issues?q=is%3Aissue) and | ||
couldn’t find anything (or linked relevant results below) | ||
required: true | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: Please describe the problem you are trying to solve here. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Solution | ||
description: What should happen? Please describe the desired behavior. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives | ||
description: | ||
What are the alternative solutions? Can this be solved in a different way? | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 🙋 Ask a question | ||
url: https://community.transloadit.com/c/tus/6 | ||
about: Ask questions and discuss with other community members |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
//registry.npmjs.org/:_authToken=${NPM_TOKEN} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,5 +26,6 @@ | |
"eslint-plugin-prettier": "^4.2.1", | ||
"prettier": "^2.8.8", | ||
"turbo": "^1.13.0" | ||
} | ||
}, | ||
"version": "0.0.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.