Skip to content
Merged
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
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -597,8 +597,6 @@ $ npm install choo
- [bankai](https://github.com/choojs/bankai) - streaming asset compiler
- [stack.gl](http://stack.gl/) - open software ecosystem for WebGL
- [yo-yo](https://github.com/maxogden/yo-yo) - tiny library for modular UI
- [bel](https://github.com/shama/bel) - composable DOM elements using template
strings
- [tachyons](https://github.com/tachyons-css/tachyons) - functional CSS for
humans
- [sheetify](https://github.com/stackcss/sheetify) - modular CSS bundler for
Expand Down Expand Up @@ -689,7 +687,6 @@ Become a backer, and buy us a coffee (or perhaps lunch?) every month or so.
[nanocomponent]: https://github.com/choojs/nanocomponent
[nanolru]: https://github.com/s3ththompson/nanolru
[bankai]: https://github.com/choojs/bankai
[bel]: https://github.com/shama/bel
[nanohtml]: https://github.com/choojs/nanohtml
[browserify]: https://github.com/substack/node-browserify
[budo]: https://github.com/mattdesl/budo
Expand Down
2 changes: 1 addition & 1 deletion example/components/footer/clear-button.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var html = require('bel')
var html = require('nanohtml')

module.exports = deleteCompleted

Expand Down
2 changes: 1 addition & 1 deletion example/components/footer/filter-button.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var html = require('bel')
var html = require('nanohtml')

module.exports = filterButton

Expand Down
2 changes: 1 addition & 1 deletion example/components/footer/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Component = require('../../../component')
var html = require('bel')
var html = require('nanohtml')

var clearButton = require('./clear-button')
var filterButton = require('./filter-button')
Expand Down
2 changes: 1 addition & 1 deletion example/components/header.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Component = require('../../component')
var html = require('bel')
var html = require('nanohtml')

module.exports = class Header extends Component {
constructor (name, state, emit) {
Expand Down
2 changes: 1 addition & 1 deletion example/components/info.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Component = require('../../component')
var html = require('bel')
var html = require('nanohtml')

module.exports = class Info extends Component {
update () {
Expand Down
2 changes: 1 addition & 1 deletion example/components/todos/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Component = require('../../../component')
var html = require('bel')
var html = require('nanohtml')

var Todo = require('./todo')

Expand Down
2 changes: 1 addition & 1 deletion example/components/todos/todo.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var html = require('bel')
var html = require('nanohtml')

module.exports = Todo

Expand Down
2 changes: 1 addition & 1 deletion example/views/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var html = require('bel') // cannot require choo/html because it's a nested repo
var html = require('nanohtml') // cannot require choo/html because it's a nested repo

var Header = require('../components/header')
var Footer = require('../components/footer')
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var html = require('./html')
var raw = require('./html/raw')
var choo = require('./')

tape('should render on the server with bel', function (t) {
tape('should render on the server with nanohtml', function (t) {
var app = choo()
app.route('/', function (state, emit) {
var strong = '<strong>Hello filthy planet</strong>'
Expand Down