andrejewski / raj

The Elm Architecture for JavaScript
https://jew.ski/raj
MIT License
196 stars 8 forks source link

Make runtime the main module #28

Closed andrejewski closed 6 years ago

andrejewski commented 6 years ago

The import { program } from 'raj/runtime' is now import { runtime } from 'raj'.

Historically, Raj had many modules but those were pulled out into their own packages (raj-compose, tagmeme). For quite awhile the only module has been runtime. I personally have been trolled by having a useless index.js file for this long and want to make this break before 1.0 as it is pure cruft.

This will break a few packages but the change is only a import change + find/replace.

The name "runtime" is also much better as "program" is the {init, update, view, done} structure and it is confusing to conflate those two. A program is inert. In Elm, a "program" is something that takes those arguments but in Raj it is an application unit.