Mickey

Results 18 comments of Mickey

It is difficult to fire `kill` event if the setup runs several tasks in a row, I don't know how I can get hold of the `stream`: ``` javascript var...

Same here: `fallback` does not work at all

In my case the `fallback` was not set correctly. It does work.

@alexandrethsilva , I am sorry for the late response. Actually I don't remember what exactly was wrong. My friend explained it to me then and it made sense. I think...

In my case the `fallback` does not work, it does serve `index.html`, but when I put something else there, like `index.dev.html` it still looks for and serves (if found) `index.html`,...

It seems that this happens when Rosetta is not installed. What I did to make it work: 1. `brew install elm` 2. copy the `/opt/homebrew/bin/elm` binary to `/Users/me/Library/pnpm/global/5/.pnpm/[email protected]/node_modules/elm/bin/elm` Note: I...

Reading through the tutorial. The _tagged template literals_ was a new thing for me - pretty cool! I have a small refactoring suggestion for `addTodo()` method, more es2015/6-ish: current: ```...

Is removing of `Todo` left out intentionally to encourage the reader to try to implement it her/him-self? (It was very easy to add).

We could get away without `xtend`, but using `Object.assign`. ``` javascript const newTodo = extend(oldTodo, data.updates); const newTodo = Object.assign({}, oldTodo, data.updates); ```

@hugozap , ES6 is used in the book, so I figured one might use more of its features. If I understand correctly, `budo` uses `babelify` so the code is transpiled...