-
Notifications
You must be signed in to change notification settings - Fork 56
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
Remove static
stuff from *Message
classes
#1503
Merged
lawrence-forooghian
merged 2 commits into
integration/v2
from
remove-static-from-Message-classes
Nov 27, 2023
Merged
Remove static
stuff from *Message
classes
#1503
lawrence-forooghian
merged 2 commits into
integration/v2
from
remove-static-from-Message-classes
Nov 27, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
temporarily deployed
to
staging/pull/1503/features
November 16, 2023 14:45
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/bundle-report
November 16, 2023 14:46
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/typedoc
November 16, 2023 14:46
Inactive
lawrence-forooghian
force-pushed
the
remove-static-from-Message-classes
branch
from
November 16, 2023 16:25
cce7de2
to
4ae8580
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1503/features
November 16, 2023 16:26
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/typedoc
November 16, 2023 16:26
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/bundle-report
November 16, 2023 16:26
Inactive
owenpearson
reviewed
Nov 22, 2023
lawrence-forooghian
force-pushed
the
remove-static-from-Message-classes
branch
from
November 22, 2023 16:16
4ae8580
to
b59bd66
Compare
@owenpearson I've just pushed a change to fix a typo in a comment. |
github-actions
bot
temporarily deployed
to
staging/pull/1503/features
November 22, 2023 16:17
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/bundle-report
November 22, 2023 16:17
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/typedoc
November 22, 2023 16:18
Inactive
lawrence-forooghian
force-pushed
the
1443-add-documentation-for-tree-shakable-version
branch
2 times, most recently
from
November 22, 2023 19:20
72ba373
to
d750acd
Compare
lawrence-forooghian
force-pushed
the
remove-static-from-Message-classes
branch
from
November 22, 2023 19:24
b59bd66
to
3b881f8
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1503/features
November 22, 2023 19:24
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/bundle-report
November 22, 2023 19:25
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/typedoc
November 22, 2023 19:25
Inactive
lawrence-forooghian
force-pushed
the
1443-add-documentation-for-tree-shakable-version
branch
from
November 23, 2023 14:43
d750acd
to
48ede7f
Compare
lawrence-forooghian
force-pushed
the
remove-static-from-Message-classes
branch
from
November 23, 2023 14:44
3b881f8
to
ed5ff7d
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1503/features
November 23, 2023 14:44
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/bundle-report
November 23, 2023 14:44
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/typedoc
November 23, 2023 14:45
Inactive
Base automatically changed from
1443-add-documentation-for-tree-shakable-version
to
integration/v2
November 24, 2023 18:10
And define it more simply.
lawrence-forooghian
force-pushed
the
remove-static-from-Message-classes
branch
from
November 27, 2023 13:03
ed5ff7d
to
c09cee7
Compare
github-actions
bot
temporarily deployed
to
staging/pull/1503/features
November 27, 2023 13:03
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/bundle-report
November 27, 2023 13:04
Inactive
github-actions
bot
temporarily deployed
to
staging/pull/1503/typedoc
November 27, 2023 13:04
Inactive
Replace them by standalone exports, which can be tree-shaken. (My eye was in particular caught by the Message.encrypt function, which I was thinking it would be good to — at some point — bundle only if the Crypto module is used. This change isn’t made here though.)
lawrence-forooghian
force-pushed
the
remove-static-from-Message-classes
branch
from
November 27, 2023 14:29
c09cee7
to
875282c
Compare
owenpearson
approved these changes
Nov 27, 2023
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.
Looks good 👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note: This PR is based on top of #1443; please review that one first.
Replace them by standalone exports, which can be tree-shaken.
(My eye was in particular caught by the
Message.encrypt
function, which I was thinking it would be good to — at some point — bundle only if theCrypto
module is used. This change isn’t made here though.)