-
Notifications
You must be signed in to change notification settings - Fork 400
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(lwc-engine): Add pragma to engine artifacts #156
Conversation
was this exhibit somewhere? or is this just precaution? |
@@ -9,7 +9,7 @@ const entry = path.resolve(__dirname, '../src/framework/main.ts'); | |||
const commonJSDirectory = path.resolve(__dirname, '../dist/commonjs'); | |||
const modulesDirectory = path.resolve(__dirname, '../dist/modules'); | |||
|
|||
const banner = (`/**\n * Copyright (C) 2017 salesforce.com, inc.\n */`); | |||
const banner = (`/* proxy-compat-disable */`); |
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.
you can still keep the salesforce copyright in a secondary line using \n
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.
I would rather put all the copyrights later as part of the GA effort, because we have different licenses everywhere. I want to debate with legal wether we need the year or not, because its always a pain.
@caridy building compat for LDS. But it would also happen in our integration tests if I didn't take it out for perf reasons. |
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.
just minor questions...
Benchmark comparisonBase commit:
|
Details
When running COMPAT transpilation (in any rollup plugin) guarantee that engine its ignored.
Fix #155