Skip to content

Commit 39a72f8

Browse files
committed
feat!: release v0.2.0
build: added trailing comma enforcement for prettier build: migrated eslint config to module build: updated dependencies chore: added jetbrains idea directory to gitignore and removed unused file refactor: moved main function catch statement to promise chain refactor: removed unnecessary comments and fixed javadoc typos and grammar refactor: replaced early return with if-else refactor: renamed constant containing base58 characters refactor: migrated node module import to use node prefix feat!: upgrade action version to node 24 build!: replaced ncc with esbuild docs: fixed typo in action parameter description build: updated actions versions in pages workflow
1 parent e8922bb commit 39a72f8

18 files changed

Lines changed: 1080 additions & 1677 deletions

.editorconfig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ end_of_line = lf
33
charset = utf-8
44
indent_style = space
55

6-
[{*.ts,*.json,.eslintrc,.prettierrc}]
6+
[{*.json,*.mjs,*.ts,.prettierrc}]
77
indent_size = 2
8-
indent_style = space

.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/pages.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: wranders/markdown-to-pages-action@v0
13+
- uses: actions/checkout@v6
14+
- uses: wranders/markdown-to-pages-action@v1
1515
with:
16-
out-path: out
16+
out_path: out
1717
token: ${{ secrets.GITHUB_TOKEN }}
18-
- uses: actions/upload-pages-artifact@v2
18+
- uses: actions/upload-pages-artifact@v4
1919
with:
2020
path: out
2121
deploy:
@@ -28,5 +28,5 @@ jobs:
2828
name: github-pages
2929
url: ${{ steps.deployment.outputs.page_url }}
3030
steps:
31-
- uses: actions/deploy-pages@v1
31+
- uses: actions/deploy-pages@v4
3232
id: deployment

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1+
.idea
12
node_modules
2-
lib
3-
CHANGES.txt
3+
lib

.prettierrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"endOfLine": "lf",
33
"semi": true,
4-
"trailingComma": "all",
54
"singleQuote": true,
6-
"tabWidth": 2
5+
"tabWidth": 2,
6+
"trailingComma": "all"
77
}

action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
delete_files:
1212
description: |
1313
A newline-delimited list of files to delete in this commit. Files that are
14-
noton the target branch are logged and ignored.
14+
not on the target branch are logged and ignored.
1515
files:
1616
required: true
1717
description: |
@@ -37,8 +37,8 @@ inputs:
3737
A token is used to interact wit the Github API. Defaults to
3838
'env.GITHUB_TOKEN'.
3939
runs:
40-
using: node20
41-
main: dist/index.js
40+
using: node24
41+
main: dist/index.cjs
4242
branding:
4343
icon: git-commit
4444
color: purple

dist/index.cjs

Lines changed: 73 additions & 0 deletions
Large diffs are not rendered by default.

dist/index.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)