Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pheuter committed Mar 14, 2015
1 parent 5c8ace8 commit 81fef42
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# v0.2.0

Major changes:
- Moved underlying module / build system from Browserify to Webpack.
- Using React Hot Loader under the scenes to automatically reload file changes during local dev
- Using Karma to run test suite and generate code coverage reports

Removed no longer necessary dependencies:
- browserify
- watchify
- expect.js
- xhr
- es5-shim
- console-polyfill

Continuing to maintain core philosophies of minimal tooling and testing:
- Simplified run scripts: `watch`, `watch-js` and `server` replaced with `server`
- No additional commands needed
- Tests now include Sinon for mocks and Chai for assertions, no more expect.js
- Same `src/` directory structure

# v0.1.0

First release.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A minimal skeleton for building testable React apps using ES6.
- [test](#test)
- [coveralls](#coveralls)
- [clean](#clean)
- [TODO](#todo)
- [Changelog](#changelog)

## Design Goals

Expand Down Expand Up @@ -127,4 +127,6 @@ $ npm run clean

**Input:** `build/app.js`

Removes the compiled app file from build.
Removes the compiled app file from build.

## [Changelog](CHANGELOG.md)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "essential-react",
"version": "0.1.0",
"version": "0.2.0",
"description": "A minimal skeleton for building testable React apps using ES6.",
"main": "src/main.jsx",
"scripts": {
Expand Down

0 comments on commit 81fef42

Please sign in to comment.