-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
47 changed files
with
11,822 additions
and
21,305 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
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,15 @@ | ||
# See: /app/configs/config.ts | ||
LANGUAGE=en | ||
|
||
# See: https://github.com/ptkdev/ptkdev-logger | ||
LOGGER_DEBUGLOG_PATH=./logs/debug.log | ||
LOGGER_ERRORLOG_PATH=./logs/errors.log | ||
LOGGER_LANGUAGE=en | ||
LOGGER_COLORS=enabled | ||
LOGGER_DEBUG=enabled | ||
LOGGER_INFO=enabled | ||
LOGGER_WARNING=enabled | ||
LOGGER_ERROR=enabled | ||
LOGGER_SPONSOR=enabled | ||
LOGGER_WRITE=disabled | ||
LOGGER_TYPE=log |
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,3 +1,2 @@ | ||
github: [ptkdev] | ||
patreon: ptkdev | ||
ko_fi: ptkdev |
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 |
---|---|---|
|
@@ -40,7 +40,6 @@ much detail as possible. --> | |
PAID SUPPORT : | ||
If you need paid support with hight priority donate correct tier on: | ||
- https://github.com/sponsors/ptkdev | ||
- https://www.patreon.com/join/ptkdev | ||
Please send me an email ([email protected]) before donation, i try provide correct price quotation for your bug or new feature. | ||
--> |
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 |
---|---|---|
|
@@ -17,7 +17,6 @@ about: Suggest an idea or new feature for this project (low priority) | |
PAID SUPPORT : | ||
If you need paid support with hight priority donate correct tier on: | ||
- https://github.com/sponsors/ptkdev | ||
- https://www.patreon.com/join/ptkdev | ||
Please send me an email ([email protected]) before donation, i try provide correct price quotation for your bug or new feature. | ||
--> |
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,13 +1,12 @@ | ||
--- | ||
name: 🎖 Paid support | ||
about: If you need paid support with hight priority donate correct tier on github.com/sponsors/ptkdev or patreon.com/join/ptkdev and send email to [email protected] | ||
about: If you need paid support with hight priority donate correct tier on github.com/sponsors/ptkdev and send email to [email protected] | ||
--- | ||
|
||
## PAID SUPPORT | ||
|
||
If you need paid support with hight priority donate correct tier on: | ||
|
||
- https://github.com/sponsors/ptkdev | ||
- https://www.patreon.com/join/ptkdev | ||
|
||
Please send me an email ([email protected]) before donation, i try provide correct price quotation for your bug or new feature. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: "!startsWith(github.event.head_commit.message, '[🚀 Release Beta]')" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@main | ||
with: | ||
token: ${{ secrets.GIT_TOKEN }} | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/setup-node@main | ||
with: | ||
node-version: "16.x" | ||
node-version: "lts/*" | ||
registry-url: "https://registry.npmjs.org" | ||
- run: git config --global user.name 'Patryk Rzucidlo (@PTKDev)' | ||
- run: git config --global user.email '[email protected]' | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: "!startsWith(github.event.head_commit.message, '[🚀 Release]')" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@main | ||
with: | ||
token: ${{ secrets.GIT_TOKEN }} | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/setup-node@main | ||
with: | ||
node-version: "16.x" | ||
node-version: "lts/*" | ||
registry-url: "https://registry.npmjs.org" | ||
- run: git config --global user.name 'Patryk Rzucidlo (@PTKDev)' | ||
- run: git config --global user.email '[email protected]' | ||
|
@@ -29,19 +29,17 @@ jobs: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
- name: Get current date | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%B %d, %Y')" | ||
run: echo "date=$(date +'%B %d, %Y')" >> $GITHUB_OUTPUT | ||
- run: echo "### CHANGELOG:" "v${{ steps.pkgjson.outputs.pkgversion }} (${{ steps.date.outputs.date }})" >> CHANGELOG_RELEASE.md | ||
- run: npm run github-workflow-changelog | ||
- id: changelog | ||
run: chmod +x ./scripts/changelog_release.sh && ./scripts/changelog_release.sh | ||
- name: Release snapshot | ||
id: release-snapshot | ||
uses: actions/create-release@latest | ||
uses: ncipollo/release-action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ steps.pkgjson.outputs.pkgversion }} | ||
release_name: v${{ steps.pkgjson.outputs.pkgversion }} | ||
body: | | ||
### CHANGELOG: v${{ steps.pkgjson.outputs.pkgversion }} (${{ steps.date.outputs.date }})${{ steps.changelog.outputs.changelog }} | ||
tag: ${{ steps.pkgjson.outputs.pkgversion }} | ||
name: v${{ steps.pkgjson.outputs.pkgversion }} | ||
bodyFile: CHANGELOG_RELEASE.md | ||
draft: false | ||
prerelease: false |
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 |
---|---|---|
|
@@ -7,13 +7,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: "!startsWith(github.event.head_commit.message, '[🚀 Release Nightly]')" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@main | ||
with: | ||
token: ${{ secrets.GIT_TOKEN }} | ||
ref: nightly | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/setup-node@main | ||
with: | ||
node-version: "16.x" | ||
node-version: "lts/*" | ||
registry-url: "https://registry.npmjs.org" | ||
- run: git config --global user.name 'Patryk Rzucidlo (@PTKDev)' | ||
- run: git config --global user.email '[email protected]' | ||
|
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 |
---|---|---|
|
@@ -7,13 +7,13 @@ jobs: | |
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@main | ||
with: | ||
token: ${{ secrets.GIT_TOKEN }} | ||
ref: nightly | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/setup-node@main | ||
with: | ||
node-version: "16.x" | ||
node-version: "lts/*" | ||
registry-url: "https://registry.npmjs.org" | ||
- run: git config --global user.name 'Patryk Rzucidlo (@PTKDev)' | ||
- run: git config --global user.email '[email protected]' | ||
|
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,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run pre-commit | ||
npm run pre-commit |
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 @@ | ||
v20 |
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.