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: fixes type mapping #9

Merged
merged 3 commits into from
Dec 18, 2020
Merged
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
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"author": "Alex Potsides <alex@achingbrain.net>",
"homepage": "https://github.com/achingbrain/uint8arrays",
"bugs": "https://github.com/achingbrain/uint8arrays/issues",
"types": "dist/src/index.d.ts",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"src/*": [
"dist/src/*",
"dist/src/*/index"
"*": [
"dist/*",
"dist/*/index"
]
}
},
Expand All @@ -24,14 +24,15 @@
"to-string.js",
"dist/*.ts",
"dist/*.map",
"dist/*.js"
"dist/*.js",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "https://github.com/achingbrain/uint8arrays.git"
},
"scripts": {
"prepare": "aegir ts -p check",
"prepare": "aegir ts -p types",
"test": "aegir test",
"lint": "aegir lint",
"release": "aegir release --docs",
Expand All @@ -51,6 +52,7 @@
"contributors": [
"achingbrain <alex@achingbrain.net>",
"Cayman <caymannava@gmail.com>",
"Rafael Ramalho <rafazelramalho19@gmail.com>"
"Rafael Ramalho <rafazelramalho19@gmail.com>",
"Irakli Gozalishvili <dev@gozala.io>"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to add your name here, aegir will do this for your

]
}