Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

8 changes: 0 additions & 8 deletions .eslintrc.cjs

This file was deleted.

6 changes: 0 additions & 6 deletions .eslintrc.json

This file was deleted.

6 changes: 2 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v2
with:
version: 8

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,11 @@ jobs:
- uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
with:
version: 8

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
registry-url: https://registry.npmjs.org/
cache: 'pnpm'

- run: make test
env:
NODE_ENV: development
- run: make test publint
11 changes: 5 additions & 6 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
Copyright 2019 Block65 Pte Ltd
Copyright 2025 Block65 Pte. Ltd.

This software and associated documentation files (the "Software") is proprietary
and unlicensed.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

You are not permitted to reproduce/copy/distribute any part of the Software
unless as part of similarly proprietary and unlicensed Block65 Pte Ltd
intellectual property.
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 changes: 12 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ distclean:
rm -rf node_modules

.PHONY: clean
clean:
clean: node_modules
pnpm exec tsc -b --clean

.PHONY: test
test:
NODE_OPTIONS=--experimental-vm-modules pnpm exec jest
test: node_modules
pnpm exec vitest

node_modules: package.json
pnpm install
Expand All @@ -22,5 +22,13 @@ dist: node_modules tsconfig.json $(SRCS)
pnpm exec tsc

.PHONY: dev
dev:
dev: node_modules
pnpm exec tsc -w

.PHONY: pretty
pretty: node_modules
pnpm exec prettier --write .

.PHONY: publint
publint: dist
npx publint --strict
134 changes: 0 additions & 134 deletions __tests__/__snapshots__/serialize.test.ts.snap

This file was deleted.

Loading
Loading