From 720031b5f62d56389a598efc66d4c41d7cbe4f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mis=CC=8Cko=20Hevery?= Date: Tue, 3 Apr 2018 09:46:36 -0700 Subject: [PATCH] docs(ivy): update outstanding work for todo (#23168) PR Close #23168 --- .../test/bundling/todo/OUTSTANDING_WORK.md | 28 +++++++++++++++++-- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/packages/core/test/bundling/todo/OUTSTANDING_WORK.md b/packages/core/test/bundling/todo/OUTSTANDING_WORK.md index c4bcc127a8..3fa5206d66 100644 --- a/packages/core/test/bundling/todo/OUTSTANDING_WORK.md +++ b/packages/core/test/bundling/todo/OUTSTANDING_WORK.md @@ -1,9 +1,31 @@ # Outstanding on the `Todo` app +## `Todo` app +- [ ] Clicking archive removes todo item. +- [ ] Update `Todo` app to match http://todomvc.com/ + ## Compiler - [ ] Remove ` tslib_1.__decorate([core_1.Input(), tslib_1.__metadata("design:type", Object)], TodoComponent.prototype, "todo", void 0);` from generated output. - +- [ ] Allow compilation of `@angular/common` through ivy. + ## Ivy Runtime - [ ] Work on `ViewContainerRef` needs to cause change detection so that `todo` app renders correctly on first render. -- [ ] The todo input value box is not correctly rendering to checked for completed tasks. -- [ ] `ViewContainerRef` must separate creation mode from update mode otherwise {{todo.done}} fails for `NgFor` because `todo` is not set during creation mode. \ No newline at end of file +- [X] The todo input value box is not correctly rendering to checked for completed tasks. +- [ ] `ViewContainerRef` must separate creation mode from update mode otherwise {{todo.done}} fails for `NgFor` because `todo` is not set during creation mode. +- [ ] Injector should be optional + + +## Bazel + +- [ ] Have action verb on the `ng_rollup_bundle` to display sourcemaps. + +# NOTES + +## Killing hung `iblaze` server + +At times the `iblaze run packages/core/test/bundling/todo:devserver` keeps running and holding onto +ports even after `ctrl-c`. This command kills the outstanding processes. + +``` +kill -9 $(ps aux | grep ibazel\\\|devserver | cut -c 17-23) +``` \ No newline at end of file