-
Notifications
You must be signed in to change notification settings - Fork 192
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
Artisanal Production Builds By Chad #444
Conversation
@@ -417,7 +410,7 @@ export class DynamicAttribute implements Attribute { | |||
patch(env: Environment) { | |||
let { element, cache } = this; | |||
|
|||
let value = expect(cache, 'must patch after flush').revalidate(); | |||
let value = cache; |
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 should be let value = cache.revalidate();
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.
good 👁
9c7f756
to
6d5b3b8
Compare
@tomdale I'm getting the following error after a
|
I've got @tomdale perhaps there is a bug in the release script or you need to |
Revert "Merge pull request #444 from tildeio/artisinal-code-stripping"
So some how this has caused 54 test failures, where I think majority of them are serializing an object into the DOM. Unsure why that is since
expect
,assert
, andunwrap
were basically just pass throughs.