react-webpack-template
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -45,3 +45,3 @@ var path = require('path'); | ||
test: /\.css$/, | ||
loader: 'style!css' | ||
loader: 'style-loader!css-loader' | ||
}, | ||
@@ -48,0 +48,0 @@ { |
# react-webpack-template - Changelog | ||
## 1.0.2: | ||
1. Updated css-loader to current stable (0.23) | ||
2. Updated glob to new major (5.x to 6.x) | ||
## 1.0.1: | ||
___Upgrades___: | ||
1. Updated isparta-instrumenter-loader to new version 1.0 | ||
@@ -9,2 +15,3 @@ | ||
___Upgrades___: | ||
1. Updated to babel core version (6.0.x) | ||
@@ -15,2 +22,3 @@ 2. Replaced isparta-loader with the more current (and better maintained) isparta-instrumenter-loader. | ||
___Features___: | ||
1. Added support for bower components in webpack | ||
@@ -21,2 +29,3 @@ 2. Added coverage reporting via karma-coverage | ||
___Upgrades___: | ||
1. Added bugfix for tests in watch mode (could be overridden by config) | ||
@@ -28,2 +37,3 @@ 2. Added new badges to README | ||
___Upgrades___: | ||
1. Added webpacks define plugin for dist version | ||
@@ -34,2 +44,3 @@ 2. Added new task ```test:watch``` to watch for changes | ||
___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). | ||
@@ -39,2 +50,3 @@ 2. Updated the shallow renderer for unit tests. | ||
___Backwards incompatible changes:___ | ||
1. Default unit tests do not need to traverse down to `Component._store.props`, but directly to `Component.props`. Please keep this in mind when using properties in your tests. |
{ | ||
"name": "react-webpack-template", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "A base skeleton template for react and webpack without task runners", | ||
@@ -46,3 +46,3 @@ "main": "server.js", | ||
"copyfiles": "^0.2.1", | ||
"css-loader": "^0.21.0", | ||
"css-loader": "^0.23.0", | ||
"eslint": "^1.2.1", | ||
@@ -52,3 +52,3 @@ "eslint-loader": "^1.0.0", | ||
"file-loader": "^0.8.4", | ||
"glob": "^5.0.15", | ||
"glob": "^6.0.0", | ||
"isparta-instrumenter-loader": "^1.0.0", | ||
@@ -55,0 +55,0 @@ "karma": "^0.13.9", |
53712