Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
434 changes: 434 additions & 0 deletions .tmp/site-assets/main.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,10 @@ jobs:
env:
- CYPRESS_framework=typescript-react
<<: *defaults
- stage: test
env:
- CYPRESS_framework=twobirds-es6
<<: *defaults
- stage: test
env:
- CYPRESS_framework=vanilla-es6
Expand Down
3 changes: 3 additions & 0 deletions examples/twobirds-es6/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
!node_modules/todomvc-app-css/index.css
!node_modules/todomvc-common/base.css
29 changes: 29 additions & 0 deletions examples/twobirds-es6/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# twoBirds ES6 • [TodoMVC](http://todomvc.com)

> A twoBirds version of the todoMVC app.

## Installation

To get started with this example, navigate into the example folder and install the NPM modules.
```bash
cd todomvc/examples/twobirds-es6
npm install
```

## Compiling ES6 to ES5

After NPM modules have been installed, use the pre-defined Babel script to convert the `src` files. Browserify is also used so that `module.exports` and `require()` can be run in your browser.

```bash
npm run compile
```

## Support

- [twitter](http://twitter.com/FrankieThu)

*Let us [know](https://github.com/tastejs/todomvc/issues) if you discover anything worth sharing.*

## Credit

Created by [Frank Thuerigen](mailto://fthuerigen@googlemail.com)
Loading