-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
amendment of todomvc example #1409
Conversation
212c0ed
to
e38bc4c
Compare
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 some grammar/style things.
I can't explain why CI build 2113.2 failed. |
It’s because of a Clippy (the Rust linter) error.
The error message is:
error: value assigned to `should_update` is never read
--> yew-functional/src/lib.rs:315:25
|
315 | should_update = true;
| ^^^^^^^^^^^^^
|
= note: `-D unused-assignments` implied by `-D warnings`
= help: maybe it is overwritten before being read?
This is weird because you haven’t modified any files inside `yew_functional`. My guess is that it’s because of an update to Clippy which now causes it to spot this error. This isn’t unexpected because Rust 1.45 released yesterday (hoorah!) so the Rust binary for the `stable` (the only check which has failed) release has changed and as a result Clippy has now failed (hope that was clear).
I don’t think this is an issue with this PR.
… On 17 Jul 2020, at 12:47, Алексей Пастухов ***@***.***> wrote:
I can't explain why CI build 2113.2 <https://travis-ci.com/github/yewstack/yew/jobs/362089411#L547> failed.
The previous build 2099 <https://travis-ci.com/github/yewstack/yew/builds/175284375> passed on July 12, 2020 0:10:12
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#1409 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AKFSTPKYF5LIFEQDPF3UXCLR4A243ANCNFSM4OXPO5PQ>.
|
@Mergifyio rebase |
Command |
7c5321b
to
86e6117
Compare
Needs another rebase to fix tests. Let's see if mergify listens to me... |
@Mergifyio rebase |
- makes it ready for wasm-pack build mentioned in issues yewstack#1079 and yewstack#1016
Co-authored-by: Teymour Aldridge <[email protected]>
Co-authored-by: Teymour Aldridge <[email protected]>
Co-authored-by: Teymour Aldridge <[email protected]>
Command |
86e6117
to
5a9a8f6
Compare
I reckon we should set up Mergify to use a bot account rather than @deniskolodin's account. |
@teymour-aldridge Yeah, that's a good idea. |
Haha, yeah, sure! Thank you 🙂👍 |
@p-alik Thanks a lot for your contribution! |
* amendment of todomvc example - makes it ready for wasm-pack build mentioned in issues yewstack#1079 and yewstack#1016 * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> Co-authored-by: Teymour Aldridge <[email protected]>
* amendment of todomvc example - makes it ready for wasm-pack build mentioned in issues #1079 and #1016 * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> Co-authored-by: Teymour Aldridge <[email protected]>
* amendment of todomvc example - makes it ready for wasm-pack build mentioned in issues yewstack#1079 and yewstack#1016 * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> * Update examples/todomvc/README.md Co-authored-by: Teymour Aldridge <[email protected]> Co-authored-by: Teymour Aldridge <[email protected]>
makes it ready for
wasm-pack build
Description
as mentioned in issues #1016 wasm-code generated with
wasm-bindgen
runs inUncaught SyntaxError: Cannot use 'import.meta' outside a module
exception. This PR aims to solve the issue by switching towasm-pack
. #1079 is an other issue, which referred the example.Checklist:
./ci/run_stable_checks.sh