Prepare 3.1.0

This commit is contained in:
Chris 2015-11-23 08:44:01 +01:00
parent 492d2c6947
commit fe4d214be9
2 changed files with 6 additions and 10 deletions

View File

@ -1,44 +1,41 @@
# generator-react-webpack - Changelog
## 3.1.0
1. Added support for postcss (Patch provided by [stylesuxx](https://github.com/stylesuxx))
## 3.0.1
___Upgrades___:
1. Unneeded files (License, .npmignore) are not copied anymore
2. Existence of .babelrc is now checked in unit tests
## 3.0.0
___Upgrades___:
1. Updated react-webpack-template to 1.0.0 to include support for babel 6.
## 2.2.7
___Upgrades___:
1. Updated yeoman to 0.21
2. Added some badges for the readme
## 2.2.6
___Upgrades___:
1. Added new version of ```react-webpack-template``` (provides new features for continuous testing and better dist build support)
## 2.2.5
___Upgrades:___
1. Added ability to create stateless components
2. Updated README with new installation instructions (need to install globally)
3. Added new tests for components (should be easier to handle in the future)
## 2.2.4
___Upgrades:___
1. Added automatic generation of components displayName property. This makes it easier to keep track of components that reside in deep subfolders (like src/components/my/example/components/indexComponent) would become "index" as a displayName, but should instead be MyExampleComponentsIndexComponent instead.
## 2.2.3
___Fixes:___
1. Fixed .gitignore renaming (Patch provided by [VovanR](https://github.com/VovanR))
## 2.2.0:
___Upgrades:___
1. Added new version of react-webpack-template, including support for React 0.14.

View File

@ -140,10 +140,10 @@ describe('react-webpack:app non-default-prompts', () => {
it('should generate dot files', () => {
assert.file([
'.babelrc',
'.editorconfig',
'.eslintrc',
'.gitignore',
'.npmignore',
'.yo-rc.json'
]);
});
@ -151,7 +151,6 @@ describe('react-webpack:app non-default-prompts', () => {
it('should generate project configuration files', () => {
assert.file([
'LICENSE',
'package.json'
]);
});