Skip to content

Remove protobufjs in favor of protons-runtime #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bbe7cdc
feat: move from protobufjs to protobuf-es
talentlessguy Feb 8, 2025
4d331d6
chore: remove mocha because of weird esm error and use node --test
talentlessguy Feb 8, 2025
729d2c5
chore: fix some of the tests
talentlessguy Feb 8, 2025
863de21
fix all undefined errors in tests
talentlessguy Feb 8, 2025
38bbe2a
Merge branch 'main' of https://github.com/ipld/js-unixfs into remove-…
talentlessguy Feb 8, 2025
f5064c7
fill in some default data
talentlessguy Feb 8, 2025
6d0583c
switch to proto3
talentlessguy Feb 8, 2025
b6f3772
fix 3 unit tests
talentlessguy Feb 8, 2025
0ae878f
make some bits more correct
talentlessguy Feb 8, 2025
b7e9d34
use protons-runtime instead
talentlessguy Feb 22, 2025
13021f2
remove protobuf-es remainders
talentlessguy Feb 22, 2025
decc353
remove some more from bufbuild
talentlessguy Feb 22, 2025
d44a8a3
fix
talentlessguy Feb 22, 2025
73fc3d3
move proto back to root to lower diffing
talentlessguy Feb 22, 2025
c074d4f
try to fix ci
talentlessguy Feb 22, 2025
1607431
use mocha again
talentlessguy Feb 22, 2025
3f4b568
totally will fix mocha
talentlessguy Feb 22, 2025
9538944
fix web tests
talentlessguy Feb 22, 2025
92bb7e8
fix symlink test
talentlessguy Apr 16, 2025
336d329
fix format neunaces tests for files with no content
talentlessguy May 19, 2025
7350693
fix failing test because of exposed t arg
talentlessguy May 19, 2025
8afbd2c
remove unused functions
talentlessguy May 19, 2025
0d95d9e
Merge branch 'main' of https://github.com/ipld/js-unixfs into remove-…
talentlessguy May 19, 2025
e1697dd
Update src/codec.js
talentlessguy May 20, 2025
c289653
move buffer shim to a test dir
talentlessguy May 20, 2025
2ac02eb
remove unused readable-stream dev dep
talentlessguy May 20, 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
4 changes: 0 additions & 4 deletions gen/Readme.md

This file was deleted.

13 changes: 13 additions & 0 deletions gen/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "gen",
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"typescript": "^4.8.4"
},
"type": "module",
"exports": "./unixfs.js",
"scripts": {
"build": "tsc"
}
}
14 changes: 14 additions & 0 deletions gen/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"include": ["./unixfs.ts"],
"exclude": ["node_modules"],
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"skipLibCheck": true,
"declaration": false,
"sourceMap": false,
"noEmit": false,
"outDir": ".",
"moduleResolution": "node",
}
}
Loading
Loading