From fe4d214be9cdfd26bf1aebba3e87921e0f207344 Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 23 Nov 2015 08:44:01 +0100 Subject: [PATCH] Prepare 3.1.0 --- CHANGELOG.md | 13 +++++-------- test/generators/app/indexTest.js | 3 +-- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d9a92e..2dd0fdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/test/generators/app/indexTest.js b/test/generators/app/indexTest.js index 419070c..5935adb 100644 --- a/test/generators/app/indexTest.js +++ b/test/generators/app/indexTest.js @@ -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' ]); });