diff --git a/README.md b/README.md
index 5d390a6892..9286b0c1ab 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,4 @@
-#### Test it out!
-
-- Run `gulp watch` to build, serve, and watch Ionic & playground
-- Run `gulp karma-watch` while gulp watch is running to watch tests.
-- All test files must be suffixed with `.spec.js`. Don't put a test as a sibling of a normal file, or import will decide the `.spec.js`is the same as the `.js`.
-
#### Building & Running
- `gulp watch`
@@ -12,84 +6,5 @@
- `open http://localhost:9000/e2e/aside/basic/index.html`
- Follow the structure found in src/components/aside/examples/basic
to create more examples.
- * The biggest thing to remember: your app has to import its dependencies with the `app/` prefix.
+ * The biggest thing to remember: your app has to import its dependencies with the `app/` prefix.
For example `import {Apple} from 'apple';` would import apple.js in your example app.
-
-#### Build
-
-- JSCS
-- JSHint (or TypeScript variant)
-
-#### Current Focus
-
-Build/Angular2
- - Build system
- - Repo structure overlord
- - ES6/Angular2/Component conventions
- - Global/Attribute config system
- - Dynamically assign behaviors/templates per config
-
-HTML/CSS/Transitions
- - Markup structure
- - SCSS
- - View transitions
- - Core View History/Navigation system
- - Routing
- - Snapshot
-
-Gestures
- - Gesture system
- - Linear constraints
- - Auto layout
- - Class/inheritance system
- - Translate native concepts to the web
-
-
-#### Make it so
-
-```
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-```
diff --git a/ionic/components.js b/ionic/components.js
index 6cbe71439f..d006cb4abe 100644
--- a/ionic/components.js
+++ b/ionic/components.js
@@ -1,24 +1,24 @@
// DON'T reference this file in the source. Only in demos.
-export * from 'ionic/components/action-menu/action-menu'
-export * from 'ionic/components/alert/alert'
+// export * from 'ionic/components/action-menu/action-menu'
+// export * from 'ionic/components/alert/alert'
export * from 'ionic/components/aside/aside'
-export * from 'ionic/components/button/button'
-export * from 'ionic/components/checkbox/checkbox'
+// export * from 'ionic/components/button/button'
+// export * from 'ionic/components/checkbox/checkbox'
export * from 'ionic/components/content/content'
-export * from 'ionic/components/icon/icon'
-export * from 'ionic/components/item/item'
-export * from 'ionic/components/form/form'
-export * from 'ionic/components/input/input'
-export * from 'ionic/components/layout/layout'
-export * from 'ionic/components/list/list'
+// export * from 'ionic/components/icon/icon'
+// export * from 'ionic/components/item/item'
+// export * from 'ionic/components/form/form'
+// export * from 'ionic/components/input/input'
+// export * from 'ionic/components/layout/layout'
+// export * from 'ionic/components/list/list'
export * from 'ionic/components/nav/nav'
export * from 'ionic/components/nav/nav-item'
-export * from 'ionic/components/nav/decorators'
-export * from 'ionic/components/radio/radio-button'
-export * from 'ionic/components/radio/radio-group'
-export * from 'ionic/components/search-bar/search-bar'
-export * from 'ionic/components/split-view/split-view'
-export * from 'ionic/components/switch/switch'
+// export * from 'ionic/components/nav/decorators'
+// export * from 'ionic/components/radio/radio-button'
+// export * from 'ionic/components/radio/radio-group'
+// export * from 'ionic/components/search-bar/search-bar'
+// export * from 'ionic/components/split-view/split-view'
+// export * from 'ionic/components/switch/switch'
export * from 'ionic/components/tabs/tabs'
export * from 'ionic/components/tabs/tab'
export * from 'ionic/components/toolbar/toolbar'
diff --git a/ionic/components/action-menu/action-menu.js b/ionic/components/action-menu/action-menu.js
index 7ae23f4803..c44deb0657 100644
--- a/ionic/components/action-menu/action-menu.js
+++ b/ionic/components/action-menu/action-menu.js
@@ -1,49 +1,49 @@
-import {NgElement, Component, View as NgView, Parent} from 'angular2/angular2'
-import {IonicComponent} from 'ionic/config/component'
-import {Icon} from 'ionic/components/icon/icon'
-import {Item} from 'ionic/components/item/item'
+// import {NgElement, Component, View as NgView, Parent} from 'angular2/angular2'
+// import {IonicComponent} from 'ionic/config/component'
+// import {Icon} from 'ionic/components/icon/icon'
+// import {Item} from 'ionic/components/item/item'
-@Component({
- selector: 'ion-action-menu'
-})
-@NgView({
- template: `
-