-
-
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.
[refactor] migrate Issue templates from Markdown to YAML
[optimize] update Upstream packages
- Loading branch information
Showing
7 changed files
with
735 additions
and
674 deletions.
There are no files selected for viewing
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,35 @@ | ||
# Reference: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms | ||
|
||
name: 🐞Bug | ||
description: Bug feedback | ||
labels: | ||
- bug | ||
assignees: TechQuery | ||
|
||
# Reference: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Operation steps | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expect result | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Actual behavior | ||
description: better with Screen Shot or Record | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Environment | ||
- type: input | ||
attributes: | ||
label: User Agent string | ||
validations: | ||
required: true |
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,40 @@ | ||
# Reference: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms | ||
|
||
name: 📦Package | ||
description: New package | ||
labels: | ||
- package | ||
assignees: TechQuery | ||
|
||
# Reference: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Web feature summary | ||
description: Its official name and description | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Reference | ||
- type: input | ||
attributes: | ||
label: Specification | ||
description: https://www.w3.org/ , https://whatwg.org/ or https://tc39.es/ | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Documentation | ||
description: https://developer.mozilla.org/ | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Git repository | ||
description: https://github.com/ or https://gitlab.com/ | ||
- type: input | ||
attributes: | ||
label: NPM package | ||
description: https://www.npmjs.com/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "web-polyfill", | ||
"version": "0.6.4", | ||
"version": "0.6.5", | ||
"license": "AGPL-3.0", | ||
"author": "[email protected]", | ||
"description": "An automatic CDN service for Web polyfills, which is based on TypeScript, Node.js & JSDelivr.", | ||
|
@@ -29,15 +29,15 @@ | |
"dotenv": "^16.3.1", | ||
"fs-extra": "^11.1.1", | ||
"koapache": "^2.2.2", | ||
"marked": "^9.0.2" | ||
"marked": "^10.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/fs-extra": "^11.0.2", | ||
"@types/node": "^18.17.17", | ||
"@types/fs-extra": "^11.0.4", | ||
"@types/node": "^18.18.9", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^14.0.1", | ||
"prettier": "^3.0.3", | ||
"tsx": "^3.12.10", | ||
"lint-staged": "^15.1.0", | ||
"prettier": "^3.1.0", | ||
"tsx": "^4.1.3", | ||
"typescript": "~5.2.2" | ||
}, | ||
"prettier": { | ||
|
Oops, something went wrong.