Compare commits

...

6 Commits

Author SHA1 Message Date
Chris ed4e8a17f3 0.3.1 2015-10-23 09:46:08 +02:00
Chris 99ef0116e0 Updated changelog for 0.3.1 2015-10-23 09:45:53 +02:00
Chris 3027a257aa Added new dev dependencies and some badges 2015-10-23 09:41:39 +02:00
Chris 65ffe317bc Merge pull request #7 from mjul/autowatch
Update by @mjul: Don't rely Karma autoWatch being true in config
2015-10-23 00:08:57 +02:00
Martin Jul 61a6776cc8 Don't rely Karma autoWatch being true in config 2015-10-22 23:36:13 +02:00
Chris d548936421 Updated changelog to reflect new pull requests. 2015-10-22 12:47:03 +02:00
3 changed files with 17 additions and 5 deletions
+11
View File
@@ -1,5 +1,16 @@
# react-webpack-template - Changelog
## 0.3.1:
___Upgrades___:
1. Added bugfix for tests in watch mode (could be overridden by config)
2. Added new badges to README
3. Updated devDependencies to current ones
## 0.3.0:
___Upgrades___:
1. Added webpacks define plugin for dist version
2. Added new task ```test:watch``` to watch for changes
## 0.2.0:
___Upgrades:___
1. Updated React from 0.13 to 0.14 (using ```^0.14```) as version string. This included minor code changes for components (now use the splitted "React"-Package) and the runner (Using React-DOM).
+1 -1
View File
@@ -2,7 +2,7 @@
> This repository holds a base template for the new version of generator-react-webpack.
It can be understood as the prototype for newly generated projects.
[![Build Status](https://travis-ci.org/weblogixx/react-webpack-template.svg)](https://travis-ci.org/weblogixx/react-webpack-template)
[![Build Status](https://travis-ci.org/weblogixx/react-webpack-template.svg)](https://travis-ci.org/weblogixx/react-webpack-template) ![Amount of Downloads per month](https://img.shields.io/npm/dm/react-webpack-template.svg "Amount of Downloads") ![Dependency Tracker](https://img.shields.io/david/weblogixx/react-webpack-template.svg "Dependency Tracker") ![Dependency Tracker](https://img.shields.io/david/dev/weblogixx/react-webpack-template.svg "Dependency Tracker")
## Features
The following features are currently included:
+5 -4
View File
@@ -1,12 +1,12 @@
{
"name": "react-webpack-template",
"version": "0.3.0",
"version": "0.3.1",
"description": "A base skeleton template for react and webpack without task runners",
"main": "server.js",
"scripts": {
"start": "node server.js --env=dev",
"test": "karma start",
"test:watch": "karma start --singleRun=false",
"test:watch": "karma start --autoWatch=true --singleRun=false",
"posttest": "npm run lint",
"serve": "node server.js --env=dev",
"serve:dist": "node server.js --env=dist",
@@ -40,11 +40,12 @@
"babel-loader": "^5.3.2",
"chai": "^3.2.0",
"copyfiles": "^0.2.1",
"css-loader": "^0.16.0",
"css-loader": "^0.21.0",
"eslint": "^1.2.1",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.3.0",
"file-loader": "^0.8.4",
"glob": "^5.0.15",
"karma": "^0.13.9",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.0",
@@ -60,7 +61,7 @@
"phantomjs": "^1.9.18",
"react-hot-loader": "^1.2.9",
"rimraf": "^2.4.3",
"style-loader": "^0.12.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.12.0"