-
Notifications
You must be signed in to change notification settings - Fork 114
chore: more size reduction #1405
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
base: fg/adjust-events
Are you sure you want to change the base?
Conversation
e993c17 to
6807604
Compare
be0b15f to
a609dfd
Compare
rename log
move DeliveryPlatformKindValue rename files remove "removeLegacySubscriptionOptions" logic
a609dfd to
a75d996
Compare
a75d996 to
cbe0e82
Compare
|
|
||
| // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
| const logDebugSpy = vi.spyOn(Log, '_debug'); | ||
| const logDebugSpy = vi.spyOn(Log, 'debug'); |
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.
When I run the test suite locally it fails on this line:
TypeError: Cannot redefine property: mock
| new Error(`"${argName}" is reserved`); | ||
|
|
||
| export const UnknownOpError = (op: { _name?: string } | { _name?: string }[]) => | ||
| new Error(`Unknown op(s):${op}`); |
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.
| new Error(`Unknown op(s):${op}`); | |
| new Error(`Unknown op(s): ${JSON.stringify(op)}`); |
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.
why rename this from Log.ts to log.ts?
Description
1 Line Summary
Details
models/Subscriptionin favor of an interfaceSystems Affected
Validation
Tests
Info
Checklist
Programming Checklist
Interfaces:
Functions:
Typescript:
Other:
elem of arraysyntax. PreferforEachor usemapcontextif possible. Instead, we can pass it to function/constructor so that we don't callOneSignal.contextScreenshots
Info
Checklist
Related Tickets
This change is