-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0e5ce1
commit fe7f9ca
Showing
25 changed files
with
900 additions
and
794 deletions.
There are no files selected for viewing
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,27 +1,28 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
1. Simple and straight to the point failing snippet | ||
2. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. Windows] | ||
- Runtime [e.g. node@19, [email protected]] | ||
- Library Version [e.g. 1.0.0] | ||
|
||
- OS: [e.g. Windows] | ||
- Runtime [e.g. node@19, [email protected]] | ||
- Library Version [e.g. 1.0.0] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,7 +1,9 @@ | ||
### Please don't delete this checklist! Before submitting the PR, please make sure you do the following: | ||
- [ ] It's really useful if your PR references an issue where it is discussed ahead of time. | ||
- [ ] This message body should clearly illustrate what problems it solves. | ||
- [ ] Ideally, include a test that fails without this PR but passes with it. | ||
|
||
### Tests | ||
- [ ] Run the tests with `npm run test` and lint the project with `npm run lint` and `npm run prettier` | ||
### Please don't delete this checklist! Before submitting the PR, please make sure you do the following: | ||
|
||
- [ ] It's really useful if your PR references an issue where it is discussed ahead of time. | ||
- [ ] This message body should clearly illustrate what problems it solves. | ||
- [ ] Ideally, include a test that fails without this PR but passes with it. | ||
|
||
### Tests | ||
|
||
- [ ] Run the tests with `npm run test` and lint the project with `npm run lint` and `npm run prettier` |
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,26 +1,24 @@ | ||
{ | ||
"baseBranches": ["main"], | ||
"dependencyDashboard": true, | ||
"extends": [ | ||
"config:base", | ||
"group:allNonMajor", | ||
"helpers:disableTypesNodeMajor", | ||
"schedule:earlyMondays" | ||
], | ||
"commitMessageAction": "", | ||
"commitMessageTopic": "{{depName}}", | ||
"commitMessageExtra": "{{#if isMajor}}v{{{newMajor}}}{{else}}{{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}{{/if}}", | ||
"labels": ["dependencies"], | ||
"prBodyTemplate": "{{{header}}}{{{table}}}{{{notes}}}{{{changelogs}}}{{{controls}}}{{{footer}}}", | ||
"prHeader": "", | ||
"prFooter": "", | ||
"semanticCommits": "enabled", | ||
"packageRules": [ | ||
{ | ||
"packageNames": [ | ||
"esbuild" | ||
], | ||
"versioning": "regex:^(<major>\\d+)\\.(<major>\\d+)\\.(<patch>\\d+)$" | ||
} | ||
] | ||
"baseBranches": ["main"], | ||
"dependencyDashboard": true, | ||
"extends": [ | ||
"config:base", | ||
"group:allNonMajor", | ||
"helpers:disableTypesNodeMajor", | ||
"schedule:earlyMondays" | ||
], | ||
"commitMessageAction": "", | ||
"commitMessageTopic": "{{depName}}", | ||
"commitMessageExtra": "{{#if isMajor}}v{{{newMajor}}}{{else}}{{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}{{/if}}", | ||
"labels": ["dependencies"], | ||
"prBodyTemplate": "{{{header}}}{{{table}}}{{{notes}}}{{{changelogs}}}{{{controls}}}{{{footer}}}", | ||
"prHeader": "", | ||
"prFooter": "", | ||
"semanticCommits": "enabled", | ||
"packageRules": [ | ||
{ | ||
"packageNames": ["esbuild"], | ||
"versioning": "regex:^(<major>\\d+)\\.(<major>\\d+)\\.(<patch>\\d+)$" | ||
} | ||
] | ||
} |
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,57 +1,57 @@ | ||
name: Deploy alpha release to GitHub | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
name: Build from source | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Build | ||
run: | | ||
npm ci | ||
npm run build | ||
- name: Store builds | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: build | ||
path: | | ||
package.json | ||
README.md | ||
LICENSE | ||
lib | ||
alpha-branch: | ||
name: Deploy alpha | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: alpha | ||
|
||
- name: Clear old build | ||
run: find . -not -wholename './.git*' -delete | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: build | ||
|
||
- name: Push to alpha | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
default_author: github_actor | ||
message: New alpha release | ||
build: | ||
name: Build from source | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Build | ||
run: | | ||
npm ci | ||
npm run build | ||
- name: Store builds | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: build | ||
path: | | ||
package.json | ||
README.md | ||
LICENSE | ||
lib | ||
alpha-branch: | ||
name: Deploy alpha | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: alpha | ||
|
||
- name: Clear old build | ||
run: find . -not -wholename './.git*' -delete | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: build | ||
|
||
- name: Push to alpha | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
default_author: github_actor | ||
message: New alpha release |
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.