Skip to content
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

fix: types with ipjs build #165

Merged
merged 1 commit into from
Aug 19, 2021
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
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"update-contributors": "aegir release --lint=false --test=false --bump=false --build=false --changelog=false --commit=false --tag=false --push=false --ghrelease=false --docs=false --publish=false"
},
"devDependencies": {
"lerna": "^3.22.1"
"lerna": "^3.22.1",
"json": "^11.0.0"
},
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions packages/ipfs-unixfs-exporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"prepare": "aegir build --no-bundle",
"test": "aegir test",
"build": "aegir build --esm-tests",
"postbuild": "npx json -I -f dist/package.json -e this.types='\"src/index.d.ts\"'",
vasco-santos marked this conversation as resolved.
Show resolved Hide resolved
"clean": "rimraf ./dist",
"lint": "aegir ts -p check && aegir lint",
"coverage": "nyc -s npm run test -t node && nyc report --reporter=html",
Expand Down
1 change: 1 addition & 0 deletions packages/ipfs-unixfs-importer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"prepare": "aegir build --no-bundle",
"test": "aegir test",
"build": "aegir build --esm-tests",
"postbuild": "npx json -I -f dist/package.json -e this.types='\"src/index.d.ts\"'",
vasco-santos marked this conversation as resolved.
Show resolved Hide resolved
"clean": "rimraf ./dist",
"lint": "aegir ts -p check && aegir lint",
"coverage": "nyc -s npm run test -t node && nyc report --reporter=html",
Expand Down
1 change: 1 addition & 0 deletions packages/ipfs-unixfs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"prepare:types": "aegir build --no-bundle",
"test": "aegir test",
"build": "aegir build --esm-tests",
"postbuild": "npx json -I -f dist/package.json -e this.types='\"src/index.d.ts\"'",
vasco-santos marked this conversation as resolved.
Show resolved Hide resolved
"clean": "rimraf ./dist",
"lint": "aegir ts -p check && aegir lint",
"coverage": "nyc -s aegir test -t node && nyc report --reporter=html",
Expand Down