-
Notifications
You must be signed in to change notification settings - Fork 175
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
Build two client bundles — ES5 and ES6 #855
Conversation
ac4bedf
to
3381f3c
Compare
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
2 similar comments
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
3381f3c
to
162f804
Compare
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
162f804
to
3c4beb3
Compare
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
2819bd9
to
7941741
Compare
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
2 similar comments
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
module.exports = (api) => { | ||
api.cache(true); | ||
return { | ||
passPerPreset: true, |
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.
This helps with VisualizationManifest
class which only has fileds declaration within constructor.
@@ -190,8 +190,6 @@ export class Essence extends ImmutableRecord<EssenceValue>(defaultEssence) { | |||
return timeFilter; | |||
} | |||
|
|||
public visResolve: Resolve; |
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.
How did app broke (build, e2e?) so you had to remove this line? Because in theory this is correct code and I'm wondering if we will get more cryptic errors like this?
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.
It builds ok but it causes visResolve
to be a undefined
during runtime. Then e2e
failed miserably.
Actually I expected more cases like this but it was single one. I'm not sure why that single field out of all fields is re-declare. I assume that parent class declares it and it's superfluous 🤔
@@ -190,8 +190,6 @@ export class Essence extends ImmutableRecord<EssenceValue>(defaultEssence) { | |||
return timeFilter; | |||
} | |||
|
|||
public visResolve: Resolve; |
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.
This causes visResolve
to be a undefined
during runtime.
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.
So probably we will encounter bunch of different weird issues.
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
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.
…elper code and save on codesize
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
1 similar comment
✅ Deployed successfully to: https://turnilo-babel-build-gmbbyye42a-ew.a.run.app |
#845