Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
359227d
Move simpleserialize.com to packages/
wemeetagain Sep 2, 2021
a3d44bc
Basic monorepo setup
wemeetagain Sep 3, 2021
1614052
Fix type errors
wemeetagain Sep 7, 2021
90de9fb
Fix linter errors
wemeetagain Sep 7, 2021
2630d8a
chore: publish (#208)
g11tech Oct 13, 2021
284d2a4
Update simpleserialize.com w bellatrix types (#237)
wemeetagain Feb 23, 2022
dc4fcf1
SSZ v2 (#223)
dapplion Sep 13, 2021
69b53f4
Fix createRandomValue (#249)
wemeetagain Mar 25, 2022
8b87b35
Bump nth-check from 2.0.0 to 2.0.1 (#215)
dependabot[bot] Apr 13, 2022
2199b36
Bump url-parse from 1.5.1 to 1.5.10 (#240)
dependabot[bot] Apr 13, 2022
b5910e2
Remove unused files (#248)
dependabot[bot] Apr 13, 2022
e1220c8
Remove unused files (#239)
dependabot[bot] Apr 13, 2022
a20287a
Update link to repo in fork-me banner (#260)
dadepo Apr 26, 2022
88aab80
Bump async from 2.6.3 to 2.6.4 (#265)
dependabot[bot] May 4, 2022
9a00d72
Bump node-sass from 6.0.1 to 7.0.0 in /packages/simpleserialize.com (…
dependabot[bot] May 4, 2022
c560d26
Bump nanoid from 3.1.23 to 3.3.4 in /packages/simpleserialize.com (#266)
dependabot[bot] May 4, 2022
97ac059
Bump minimist from 1.2.5 to 1.2.6 in /packages/simpleserialize.com (#…
dependabot[bot] May 4, 2022
8b0dc80
Docs and links update (#264)
philknows May 16, 2022
22e89f1
update and publish simpleserialize.com (#267)
g11tech May 19, 2022
c6a7021
chore: publish
wemeetagain Dec 8, 2022
cd746c3
chore: publish
wemeetagain Dec 8, 2022
d054f61
chore: publish
wemeetagain Jan 5, 2023
dec88df
chore: yarn workspaces, release please (#290)
mpetrunic Jan 6, 2023
cb26456
chore: fix release-please (#298)
mpetrunic Jan 23, 2023
7c15586
chore: use workspace version (#307)
mpetrunic Apr 5, 2023
61de011
feat: support capella fork on simpleserialize.com (#321)
nflaig May 3, 2023
005efc9
fix: show errors during serialization/deserialization as popup (#323)
nflaig May 3, 2023
4d73856
feat: support full uint64 range on simpleserialize.com (#327)
nflaig Jul 7, 2023
ed202de
feat: Add deneb to simpleserialize.com (#362)
ensi321 Apr 1, 2024
05bc457
Use dart-sass instead of node-sass (#364)
ensi321 Apr 1, 2024
d8deb6c
chore: migrate down to yarn 1 (#374)
nazarhussain May 17, 2024
c752d1a
feat: add electra to simpleserialize.com (#418)
ensi321 Nov 13, 2024
9a768cf
chore: make all packages build to be consistent and compatible with c…
nazarhussain Dec 20, 2024
b1f1feb
chore: migrate the linting from eslint to biomejs (#475)
nazarhussain Mar 19, 2025
1afc74b
chore: fix all react files for linting rules (#478)
nazarhussain Mar 26, 2025
9f1978b
chore: fix linting rule lint/style/noUselessElse (#476)
nazarhussain Apr 21, 2025
b20166f
feat: set electra as default fork on simpleserialize.com (#465)
nflaig May 8, 2025
1cc6a12
chore: bump ssz version for simpleserialize.com (#491)
nflaig May 30, 2025
355556a
feat: add docker file
nazarhussain Jul 31, 2025
1265a6d
chore: migrate the .github workflows
nazarhussain Jul 31, 2025
5fc97c0
fix: broken package versions
nazarhussain Jul 31, 2025
f6e6513
chore: remove the non-related labeler workflow
nazarhussain Jul 31, 2025
e0fc83d
chore: fix the linting after rebase
nazarhussain Jul 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"presets": [
["@babel/env", {
"modules": false,
"useBuiltIns": "usage",
"corejs": "3"
}],
"@babel/react",
"@babel/typescript"
]
"presets": [
[
"@babel/env",
{
"modules": false,
"useBuiltIns": "usage",
"corejs": "3"
}
],
"@babel/react",
"@babel/typescript"
]
}
82 changes: 0 additions & 82 deletions .eslintrc.js

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/cd-manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CloudFlare Pages Deploy
on:
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v4
with:
cache: yarn
node-version: '20'
- name: Bootstrap
run: yarn --immutable
- name: Build
run: yarn build
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: simpleserialize
directory: ./dist
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
23 changes: 23 additions & 0 deletions .github/workflows/semantic-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Semantic PR"

on:
pull_request_target:
types:
- opened
- edited
- synchronize

jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
fix
feat
chore
revert
11 changes: 11 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
printWidth: 120,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: false,
quoteProps: "as-needed",
trailingComma: "es5",
bracketSpacing: false,
arrowParens: "always",
};
Loading