-
Notifications
You must be signed in to change notification settings - Fork 235
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
feat(types): add typescript definitions / add named export run #388
base: master
Are you sure you want to change the base?
Conversation
Hi @bradvogel - when you get a chance can you take a look at this PR? |
b2f65c8
to
a6c2235
Compare
Can you rebase on the latest origin/master? It looks like this PR diff is picking up some unrelated changes. |
… Add named export run that exports middleware/queues in arena.
Changes rebased against upstream master. Take a look now @bradvogel |
CHANGELOG.md
Outdated
@@ -1,3 +1,9 @@ | |||
### [3.20.1](https://github.com/bee-queue/arena/compare/v3.20.0...v3.20.1) (2021-04-15) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to update this file. It's done automatically when this PR is merged. See https://github.com/bee-queue/arena/commits/master/CHANGELOG.md
@@ -1,4 +1,6 @@ | |||
*.hbs | |||
*.min.js | |||
*.min.css | |||
*.d.ts | |||
tsconfig.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI is failing. I think you need to ignore the /dist folder here.
Changes Made
package.json
which includestypes
reference and scriptgenerate:types
)run
which exports bothapp
andqueue
. Simplifies process of adding/removing queues from arena. This does not change default behavior!README.md
Potential Risks
Test Plan
example/
directory work. I have confirmed these work for meChecklist